package com.ld.igds.models;
|
|
import com.bstek.dorado.annotation.PropertyDef;
|
import lombok.Data;
|
import javax.persistence.*;
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 安全管理
|
*
|
* @author czt
|
* @data 2023/10/30
|
*/
|
@Data
|
@Entity
|
@Table(name = "D_M_SECURE_MANAGER")
|
public class SecureManager implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@Id
|
@Column(name = "fxdbm", length = 12)
|
@PropertyDef(label = "风险点编码", description = "8位风险识别日期(YYYYMMDD)+4位风险顺序号")
|
private String fxdbm;
|
|
@Column(name = "COMPANY_ID_", length = 10)
|
@PropertyDef(label = "组织编码")
|
private String companyId;
|
|
@Column(name = "DEPT_ID_", length = 40)
|
@PropertyDef(label = "库区编码")
|
private String deptId;
|
|
@Column(name = "dd", length = 200)
|
@PropertyDef(label = "地点")
|
private String dd;
|
|
@Column(name = "sbr", length = 50)
|
@PropertyDef(label = "识别人")
|
private String sbr;
|
|
@Column(name = "hjbw", length = 200)
|
@PropertyDef(label = "环节/部位")
|
private String hjbw;
|
|
@Column(name = "fxxx", length = 200)
|
@PropertyDef(label = "风险信息")
|
private String fxxx;
|
|
@Column(name = "fxlx", length = 1)
|
@PropertyDef(label = "风险类型")
|
private String fxlx;
|
|
@PropertyDef(label = "风险等级")
|
@Column(name = "fxfj", length = 1)
|
private String fxfj;
|
|
@Column(name = "fxglcs", length = 200)
|
@PropertyDef(label = "风险管控措施")
|
private String fxglcs;
|
|
@Column(name = "yhxx", length = 200)
|
@PropertyDef(label = "隐患信息")
|
private String yhxx;
|
|
@Column(name = "yhpcxx", length = 200)
|
@PropertyDef(label = "隐患排查信息")
|
private String yhpcxx;
|
|
@Column(name = "yhzgxx", length = 200)
|
@PropertyDef(label = "隐患整改信息")
|
private String yhzgxx;
|
|
@Column(name = "yhysxx", length = 200)
|
@PropertyDef(label = "隐患整改验收信息")
|
private String yhysxx;
|
|
@Column(name = "sgjbxx", length = 200)
|
@PropertyDef(label = "事故基本信息")
|
private String sgjbxx;
|
|
@Column(name = "zgsx", length = 200)
|
@PropertyDef(label = "整改时限")
|
private String zgsx;
|
|
@Column(name = "zrdw", length = 200)
|
@PropertyDef(label = "责任单位")
|
private String zrdw;
|
|
@Column(name = "zrr", length = 200)
|
@PropertyDef(label = "责任人")
|
private String zrr;
|
|
@Column(name = "zgysxx", length = 200)
|
@PropertyDef(label = "整改验收信息")
|
private String zgysxx;
|
|
@Column(name = "fxgzjgzrr", length = 50)
|
@PropertyDef(label = "风险跟踪监管责任人")
|
private String fxgzjgzrr;
|
|
@Column(name = "updateTime")
|
@PropertyDef(label = "最后更新时间")
|
private Date updateTime;
|
|
}
|