| package com.fzzy.push.sx2024.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/24 20:55 | 
|  */ | 
| @Data | 
| public class SX2024Api1106 implements Serializable { | 
|   | 
|     @PropertyDef(label = "统一库区编码" ) | 
|     @JsonProperty("TYKQBM") | 
|     private String tykqbm; | 
|   | 
|     @PropertyDef(label = "油罐代码") | 
|     @JsonProperty("YGDM") | 
|     private String ygdm; | 
|   | 
|     @PropertyDef(label = "油罐名称") | 
|     @JsonProperty("YGMC") | 
|     private String ygmc; | 
|   | 
|     @PropertyDef(label = "统一油罐编码" ) | 
|     @JsonProperty("TYYGBM") | 
|     private String tyygbm; | 
|   | 
|     @PropertyDef(label = "统一油罐名称" ) | 
|     @JsonProperty("TYYGMC") | 
|     private String tyygmc; | 
|   | 
|     @PropertyDef(label = "库区代码") | 
|     @JsonProperty("KQDM") | 
|     private String kqdm; | 
|   | 
|     @PropertyDef(label = "罐容") | 
|     @JsonProperty("GR") | 
|     private Double gr; | 
|   | 
|     @PropertyDef(label = "建造时间") | 
|     @JSONField(format = "yyyy-MM-dd") | 
|     @JsonProperty("JZSJ") | 
|     private Date jzsj; | 
|   | 
|     @PropertyDef(label = "油罐及附属设施是否完好") | 
|     @JsonProperty("YGJFSSSSFWH") | 
|     private String ygjfssssfwh; | 
|   | 
|     @PropertyDef(label = "有无加热装置") | 
|     @JsonProperty("YWJRZZ") | 
|     private String ywjrzz; | 
|   | 
|     @PropertyDef(label = "油罐类型") | 
|     @JsonProperty("YGLX") | 
|     private String yglx; | 
|   | 
|     @PropertyDef(label = "罐内直径") | 
|     @JsonProperty("GNZJ") | 
|     private double gnzj; | 
|   | 
|     @PropertyDef(label = "罐内高度") | 
|     @JsonProperty("GNGD") | 
|     private double gngd; | 
|   | 
|     @PropertyDef(label = "检定方式") | 
|     @JsonProperty("JDFS") | 
|     private String jdfs; | 
|   | 
|     @PropertyDef(label = "焊接方式") | 
|     @JsonProperty("HJFS") | 
|     private String hjfs; | 
|   | 
|     @PropertyDef(label = "油罐状态") | 
|     @JsonProperty("YGZT") | 
|     private String ygzt; | 
|   | 
|     @PropertyDef(label = "设计单位") | 
|     @JsonProperty("SJDW") | 
|     private String sjdw; | 
|   | 
|     @PropertyDef(label = "建设单位") | 
|     @JsonProperty("JSDW") | 
|     private String jsdw; | 
|   | 
|     @PropertyDef(label = "监理单位") | 
|     @JsonProperty("JLDW") | 
|     private String jldw; | 
|   | 
|     @PropertyDef(label = "操作标志") | 
|     @JsonProperty("CZBZ") | 
|     private String czbz; | 
|   | 
|     @PropertyDef(label = "最后更新时间") | 
|     @JSONField(format = "yyyy-MM-dd HH:mm:ss") | 
|     @JsonProperty("ZHGXSJ") | 
|     private Date zhgxsj; | 
|   | 
| } |