新增预警/告警事务首页以及技术监督管理接口
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user