package com.fzzy.push.gd2023.dto; import com.alibaba.fastjson.annotation.JSONField; import com.bstek.dorado.annotation.PropertyDef; import lombok.Data; import java.io.Serializable; import java.util.Date; /** * 接口表-油罐 */ @Data public class Gd2023Api1106 implements Serializable { /** * */ private static final long serialVersionUID = 6967028172020353366L; @PropertyDef(label = "油罐代码") private String ygdm; @PropertyDef(label = "统一油罐编码" ) private String tyygbm; @PropertyDef(label = "油罐名称") private String ygmc; @PropertyDef(label = "库区代码") private String kqdm; @PropertyDef(label = "统一库区代码") private String tykqbm; @PropertyDef(label = "罐容") private Double gr; @PropertyDef(label = "建造时间") @JSONField(format = "yyyy-MM-dd") private Date jzsj; @PropertyDef(label = "油罐及附属设施是否完好") private String ygjfssssfwh; @PropertyDef(label = "有无加热装置") private String ywjrzz; @PropertyDef(label = "油罐类型") private String yglx; @PropertyDef(label = "罐内直径") private Double gnzj; @PropertyDef(label = "罐内高度") private Double gngd; @PropertyDef(label = "检定方式") private String jdfs; @PropertyDef(label = "焊接方式") private String hjfs; @PropertyDef(label = "油罐状态") private String ygzt; @PropertyDef(label = "设计单位") private String sjdw; @PropertyDef(label = "建设单位") private String jsdw; @PropertyDef(label = "监理单位") private String jldw; @PropertyDef(label = "操作标志") private String czbz; @PropertyDef(label = "最后更新时间") @JSONField(format = "yyyy-MM-dd HH:mm:ss") private Date zhgxsj; }