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 SX2023Api1305 implements Serializable { @PropertyDef(label = "仓房代码") @JsonProperty("CFDM") private String cfdm; @PropertyDef(label = "通风作业单号") @JsonProperty("TFZYDH") private String tfzydh; @JSONField(format = "yyyy-MM-dd") @PropertyDef(label = "通风日期") @JsonProperty("TFRQ") private Date tfrq; @PropertyDef(label = "通风目的") @JsonProperty("TFMD") private String tfmd; @PropertyDef(label = "粮堆孔隙度") @JsonProperty("LDKXD") private Double ldkxd; @PropertyDef(label = "通风类型") @JsonProperty("TFLX") private String tflx; @PropertyDef(label = "风道型式") @JsonProperty("FDXS") private String fdxs; @PropertyDef(label = "风网设置方式") @JsonProperty("FWSZFS") private String fwszfs; @PropertyDef(label = "主风道截面积") @JsonProperty("ZFDJMJ") private Double zfdjmj; @PropertyDef(label = "支风道截面积") @JsonProperty("ZFDJMJ") private Double zhfdjmj; @PropertyDef(label = "支风道总长度") @JsonProperty("ZFDZCD") private Double zfdzcd; @PropertyDef(label = "风网开孔率") @JsonProperty("FWKKL") private Double fwkkl; @PropertyDef(label = "空气途径比") @JsonProperty("KQTJB") private Double kqtjb; @PropertyDef(label = "通风口设置个数") @JsonProperty("TFKSZGS") private Integer tfkszgs; @PropertyDef(label = "通风机型号") @JsonProperty("TFJXH") private String tfjxh; @PropertyDef(label = "通风机台数") @JsonProperty("TFJXH") private Integer tfjts; @PropertyDef(label = "单台风机额定全压") @JsonProperty("DTFJEDQY") private Double dtfjedqy; @PropertyDef(label = "单台风机额定风量") @JsonProperty("DTFJEDFL") private Double dtfjedfl; @PropertyDef(label = "单台风机额定功率") @JsonProperty("DTFJEDGL") private Double dtfjedgl; @PropertyDef(label = "送风方式") @JsonProperty("SFFS") private String sffs; @PropertyDef(label = "单台风机实测风量") @JsonProperty("DTFJSCFL") private Double dtfjscfl; @PropertyDef(label = "单台风机轴功率") @JsonProperty("DTFJZGL") private Double dtfjzgl; @PropertyDef(label = "总风量") @JsonProperty("ZFL") private Double zfl; @PropertyDef(label = "单位通风量") @JsonProperty("DWTFL") private Double dwtfl; @PropertyDef(label = "实测系统阻力") @JsonProperty("DWTFL") private Double scxtzl; @PropertyDef(label = "总耗电量") @JsonProperty("ZHDL") private Double zhdl; @PropertyDef(label = "作业时气温") @JsonProperty("ZYSQW") private Double zysqw; @PropertyDef(label = "作业时气湿") @JsonProperty("ZYSQS") private Double zysqs; @PropertyDef(label = "通风时长") @JsonProperty("TFSC") private Double tfsc; @PropertyDef(label = "作业前平均粮温") @JsonProperty("ZYQPJLW") private Double zyqpjlw; @PropertyDef(label = "结束后平均粮温") @JsonProperty("JSHPJLW") private Double jshpjlw; @PropertyDef(label = "降温幅度") @JsonProperty("JWFD") private Double jwfd; @PropertyDef(label = "吨粮降温能耗") @JsonProperty("DLJWNH") private Double dljwnh; @PropertyDef(label = "失水率") @JsonProperty("SSL") private Double ssl; @PropertyDef(label = "保水效果评价结果") @JsonProperty("BSXGPJJG") private String bsxgpjjg; @PropertyDef(label = "通风降温均匀性评价_整仓") @JsonProperty("TFJWJYXPJZC") private String tfjwjyxpjzc; @PropertyDef(label = "通风降温均匀性评价_上层") @JsonProperty("TFJWJYXPJSC") private String tfjwjyxpjsc; @PropertyDef(label = "通风降温均匀性评价_中(间)层") @JsonProperty("TFJWJYXPJZJC") private String tfjwjyxpjzjc; @PropertyDef(label = "通风降温均匀性评价_下层") @JsonProperty("TFJWJYXPJXC") private String tfjwjyxpjxc; @PropertyDef(label = "作业前平均水分") @JsonProperty("ZYQPJSF") private Double zyqpjsf; @PropertyDef(label = "结束后平均水分") @JsonProperty("ZYHPJSF") private Double zyhpjsf; @PropertyDef(label = "降水幅度") @JsonProperty("JSFD") private Double jsfd; @PropertyDef(label = "吨粮降水能耗") @JsonProperty("DLJSNH") private Double dljsnh; @PropertyDef(label = "通风降水均匀性分析_整仓") @JsonProperty("TFJSJYXFXZC") private String tfjsjyxfxzc; @PropertyDef(label = "通风降水均匀性分析_上层") @JsonProperty("TFJSJYXFXSC") private String tfjsjyxfxsc; @PropertyDef(label = "通风降水均匀性分析_中(间)层") @JsonProperty("TFJSJYXFXZJC") private String tfjsjyxfxzjc; @PropertyDef(label = "通风降水均匀性分析_下层") @JsonProperty("TFJSJYXFXXC") private String tfjsjyxfxxc; @PropertyDef(label = "通风作业负责人") @JsonProperty("TFZYFZR") private String tfzyfzr; @PropertyDef(label = "通风作业人员") @JsonProperty("TFZYRY") private String tfzyry; @PropertyDef(label = "操作标志") @JsonProperty("CZBZ") private String czbz; @JSONField(format = "yyyy-MM-dd HH:mm:ss") @PropertyDef(label = "最后更新时间") @JsonProperty("ZHGXSJ") private Date zhgxsj; }