新增预警/告警事务首页以及技术监督管理接口

This commit is contained in:
Lee
2023-03-29 18:04:03 +08:00
parent 0a5573804c
commit 92f10b85f7
39 changed files with 2060 additions and 48 deletions

View File

@@ -0,0 +1,41 @@
package com.njcn.process.pojo.po;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
/**
* <p>
*
* </p>
*
* @author lee
* @since 2023-03-29
*/
@Data
@TableName("ths_alarm_formwork")
public class ThsAlarmFormwork {
private static final long serialVersionUID = 1L;
/**
* 主键id
*/
private String id;
/**
* 类型0预警1告警
*/
private Integer type;
/**
* 单据类型0预/告警单模板1整改通知反馈单模板
*/
private Integer formworkType;
/**
* 模板路径
*/
private String path;
}