package com.fzzy.push.sh2023.dto;
|
|
import com.alibaba.fastjson.annotation.JSONField;
|
import com.bstek.dorado.annotation.PropertyDef;
|
import lombok.Data;
|
|
import javax.persistence.Column;
|
import javax.persistence.Entity;
|
import javax.persistence.Id;
|
import javax.persistence.Table;
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 接口表-安全管理数据表
|
*
|
* @author chen
|
* @date 2022-09-02 16:06
|
*/
|
@Data
|
public class SH2023Api1301 implements Serializable {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
@PropertyDef(label = "库区代码")
|
private String kqdm;
|
|
@PropertyDef(label = "单位代码")
|
private String dwdm;
|
|
@PropertyDef(label = "库区名称")
|
private String kqmc;
|
|
@PropertyDef(label = "地点")
|
private String dd;
|
|
@PropertyDef(label = "风险点编码")
|
private String fxdbm;
|
|
@PropertyDef(label = "识别人")
|
private String sbr;
|
|
@PropertyDef(label = "环节/部位")
|
private String hjbw;
|
|
@PropertyDef(label = "风险信息")
|
private String fxxx;
|
|
@PropertyDef(label = "风险类型")
|
private String fxlx;
|
|
@PropertyDef(label = "风险分级")
|
private String fxfj;
|
|
@PropertyDef(label = "风险管控措施")
|
private String fxglcs;
|
|
@JSONField(name = "Yhxx")
|
@PropertyDef(label = "隐患信息")
|
private String yhxx;
|
|
@PropertyDef(label = "隐患排查信息")
|
private String yhpcxx;
|
|
@PropertyDef(label = "隐患整改信息")
|
private String yhzgxx;
|
|
@PropertyDef(label = "隐患整改验收信息")
|
private String yhysxx;
|
|
@PropertyDef(label = "事故基本信息")
|
private String sgjbxx;
|
|
@PropertyDef(label = "整改时限")
|
private String zgsx;
|
|
@PropertyDef(label = "责任单位")
|
private String zrdw;
|
|
@PropertyDef(label = "责任人")
|
private String zrr;
|
|
@PropertyDef(label = "整改验收信息")
|
private String zgysxx;
|
|
@PropertyDef(label = "风险跟踪监管责任人")
|
private String fxgzjgzrr;
|
|
@PropertyDef(label = "操作标志")
|
private String czbz;
|
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
@PropertyDef(label = "最后更新时间")
|
private Date zhgxsj;
|
|
@PropertyDef(label = "标记位")
|
private String bjw;
|
}
|