package com.fzzy.api.entity;
|
|
import com.alibaba.fastjson.annotation.JSONField;
|
import com.bstek.dorado.annotation.PropertyDef;
|
import lombok.Data;
|
import org.hibernate.annotations.GenericGenerator;
|
import javax.persistence.*;
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 接口表-安全管理数据表
|
*
|
* @author chen
|
* @date 2022-09-02 16:06
|
*/
|
@Data
|
@Entity
|
@Table(name = "API_1301")
|
public class Api1301 implements Serializable {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
@Id
|
@PropertyDef(label = "风险点编码" )
|
@Column(name = "fxdbm", length = 18)
|
private String fxdbm;
|
|
@JSONField(serialize = false)
|
@PropertyDef(label = "业务id", description = "接口返回不涉及此字段")
|
@Column(name = "bizId", length = 40)
|
private String bizId;
|
|
@PropertyDef(label = "库区代码" )
|
@Column(name = "kqdm", length = 21)
|
private String kqdm;
|
|
@PropertyDef(label = "单位代码" )
|
@Column(name = "dwdm", length = 18)
|
private String dwdm;
|
|
@PropertyDef(label = "库区名称" )
|
@Column(name = "kqmc", length = 256)
|
private String kqmc;
|
|
@PropertyDef(label = "地点" )
|
@Column(name = "dd", length = 128)
|
private String dd;
|
|
@PropertyDef(label = "识别人" )
|
@Column(name = "sbr", length = 32)
|
private String sbr;
|
|
@PropertyDef(label = "环节/部位" )
|
@Column(name = "hjbw", length = 128)
|
private String hjbw;
|
|
@PropertyDef(label = "风险信息" )
|
@Column(name = "fxxx", length = 256)
|
private String fxxx;
|
|
@PropertyDef(label = "风险类型" )
|
@Column(name = "fxlx", length = 1)
|
private String fxlx;
|
|
@PropertyDef(label = "风险分级" )
|
@Column(name = "fxfj", length = 1)
|
private String fxfj;
|
|
@PropertyDef(label = "风险管控措施" )
|
@Column(name = "fxglcs", length = 1000)
|
private String fxglcs;
|
|
@JSONField(name = "Yhxx")
|
@PropertyDef(label = "隐患信息" )
|
@Column(name = "yhxx", length = 256)
|
private String yhxx;
|
|
@PropertyDef(label = "隐患排查信息" )
|
@Column(name = "yhpcxx", length = 1000)
|
private String yhpcxx;
|
|
@PropertyDef(label = "隐患整改信息" )
|
@Column(name = "yhzgxx", length = 1000)
|
private String yhzgxx;
|
|
@PropertyDef(label = "隐患整改验收信息" )
|
@Column(name = "yhysxx", length = 1000)
|
private String yhysxx;
|
|
@PropertyDef(label = "事故基本信息" )
|
@Column(name = "sgjbxx", length = 1000)
|
private String sgjbxx;
|
|
@JSONField(format = "yyyy-MM-dd")
|
@PropertyDef(label = "整改时限" )
|
@Column(name = "zgsx", length = 10)
|
private Date zgsx;
|
|
@PropertyDef(label = "责任单位" )
|
@Column(name = "zrdw", length = 128)
|
private String zrdw;
|
|
@PropertyDef(label = "责任人" )
|
@Column(name = "zrr", length = 32)
|
private String zrr;
|
|
@PropertyDef(label = "整改验收信息" )
|
@Column(name = "zgysxx", length = 1024)
|
private String zgysxx;
|
|
@PropertyDef(label = "风险跟踪监管责任人" )
|
@Column(name = "fxgzjgzrr", length = 32)
|
private String fxgzjgzrr;
|
|
@PropertyDef(label = "操作标志" )
|
@Column(name = "czbz", length = 1)
|
private String czbz;
|
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
@PropertyDef(label = "最后更新时间" )
|
@Column(name = "zhgxsj")
|
private Date zhgxsj;
|
|
}
|