| package com.fzzy.push.sx2023.data; | 
|   | 
| import com.alibaba.fastjson.annotation.JSONField; | 
| import com.bstek.dorado.annotation.PropertyDef; | 
| import com.fasterxml.jackson.annotation.JsonProperty; | 
| import lombok.Data; | 
|   | 
| import java.io.Serializable; | 
| import java.util.Date; | 
|   | 
| /** | 
|  * @Description | 
|  * @Author CZT | 
|  * @Date 2024/4/25 14:24 | 
|  */ | 
| @Data | 
| public class SX2023Api1301 implements Serializable { | 
|   | 
|     @PropertyDef(label = "单位代码") | 
|     @JsonProperty("DWDM") | 
|     private String dwdm; | 
|   | 
|     @PropertyDef(label = "库区代码") | 
|     @JsonProperty("KQDM") | 
|     private String kqdm; | 
|   | 
|     @PropertyDef(label = "地点") | 
|     @JsonProperty("DD") | 
|     private String dd; | 
|   | 
|     @PropertyDef(label = "风险点编码") | 
|     @JsonProperty("FXDBM") | 
|     private String fxdbm; | 
|   | 
|     @PropertyDef(label = "识别人") | 
|     @JsonProperty("SBR") | 
|     private String sbr; | 
|   | 
|     @PropertyDef(label = "环节/部位") | 
|     @JsonProperty("HJBW") | 
|     private String hjbw; | 
|   | 
|     @PropertyDef(label = "风险信息") | 
|     @JsonProperty("HJBW") | 
|     private String fxxx; | 
|   | 
|     @PropertyDef(label = "风险类型") | 
|     @JsonProperty("FXLX") | 
|     private String fxlx; | 
|   | 
|     @PropertyDef(label = "风险分级") | 
|     @JsonProperty("FXFJ") | 
|     private String fxfj; | 
|   | 
|     @PropertyDef(label = "风险管控措施") | 
|     @JsonProperty("FXGLCS") | 
|     private String fxglcs; | 
|   | 
|     @PropertyDef(label = "隐患信息") | 
|     @JsonProperty("YHXX") | 
|     private String yhxx; | 
|   | 
|     @PropertyDef(label = "隐患排查信息") | 
|     @JsonProperty("YHXX") | 
|     private String yhpcxx; | 
|   | 
|     @PropertyDef(label = "隐患整改信息") | 
|     @JsonProperty("YHZGXX") | 
|     private String yhzgxx; | 
|   | 
|     @PropertyDef(label = "隐患整改验收信息") | 
|     @JsonProperty("YHYSXX") | 
|     private String yhysxx; | 
|   | 
|     @PropertyDef(label = "事故基本信息") | 
|     @JsonProperty("SGJBXX") | 
|     private String sgjbxx; | 
|   | 
|     @JSONField(format = "yyyy-MM-dd") | 
|     @PropertyDef(label = "整改时限") | 
|     @JsonProperty("ZGSX") | 
|     private Date zgsx; | 
|   | 
|     @PropertyDef(label = "责任单位") | 
|     @JsonProperty("ZRDW") | 
|     private String zrdw; | 
|   | 
|     @PropertyDef(label = "责任人") | 
|     @JsonProperty("ZRR") | 
|     private String zrr; | 
|   | 
|     @PropertyDef(label = "整改验收信息") | 
|     @JsonProperty("ZGYSXX") | 
|     private String zgysxx; | 
|   | 
|     @PropertyDef(label = "风险跟踪监管责任人") | 
|     @JsonProperty("FXGZJGZRR") | 
|     private String fxgzjgzrr; | 
|   | 
|     @PropertyDef(label = "操作标志") | 
|     @JsonProperty("CZBZ") | 
|     private String czbz; | 
|   | 
|     @JSONField(format = "yyyy-MM-dd HH:mm:ss") | 
|     @PropertyDef(label = "最后更新时间") | 
|     @JsonProperty("ZHGXSJ") | 
|     private Date zhgxsj; | 
| } |