package com.fzzy.igds.dzhwk.domain; import com.bstek.dorado.annotation.PropertyDef; import lombok.Data; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Id; import javax.persistence.Table; import java.io.Serializable; import java.util.Date; /** * 接口表-充氮气调作业 * */ @Data @Entity @Table(name = "H_N2_FILLING") public class N2Filling implements Serializable { @Id @Column(name = "zydh", length = 40) @PropertyDef(label = "作业单号") private String zydh; @Column(name = "COMPANY_ID_", length = 10) @PropertyDef(label = "组织编码") private String companyId; @Column(name = "DEPT_ID_", length = 40) @PropertyDef(label = "所属分库") private String deptId; @Column(name = "ajdm", length = 40) @PropertyDef(label = "廒间代码") private String ajdm; @Column(name = "kssj") @PropertyDef(label = "开始时间") private Date kssj; @Column(name = "jssj") @PropertyDef(label = "结束时间") private Date jssj; @Column(name = "lspzdm", length = 40) @PropertyDef(label = "粮食品种") private String lspzdm; @Column(name = "lssl", length = 40) @PropertyDef(label = "粮食数量") private Double lssl; @Column(name = "qmxsfdb", length = 40) @PropertyDef(label = "仓房气密性是否达标") private String qmxsfdb; @Column(name = "qtmd", length = 40) @PropertyDef(label = "气调目的") private String qtmd; @Column(name = "mbfs", length = 40) @PropertyDef(label = "粮堆密闭方式") private String mbfs; @Column(name = "sddqnd") @PropertyDef(label = "设定氮气浓度") private Double sddqnd; @Column(name = "cqfs", length = 40) @PropertyDef(label = "充气方式") private String cqfs; @Column(name = "ljqtsj") @PropertyDef(label = "累计气调时间") private Double ljqtsj; @Column(name = "wwzgz") @PropertyDef(label = "气调期间大气温度最高值") private Double wwzgz; @Column(name = "wwzdz") @PropertyDef(label = "气调期间大气温度最低值") private Double wwzdz; @Column(name = "wwpjz") @PropertyDef(label = "气调期间大气温度平均值") private Double wwpjz; @Column(name = "cnwwzgz") @PropertyDef(label = "气调期间仓内温度最高值") private Double cnwwzgz; @Column(name = "cnwwzdz") @PropertyDef(label = "气调期间仓内温度最低值") private Double cnwwzdz; @Column(name = "cnwwpjz") @PropertyDef(label = "气调期间仓内温度平均值") private Double cnwwpjz; @Column(name = "cnwszgz") @PropertyDef(label = "气调期间仓内湿度最高值") private Double cnwszgz; @Column(name = "cnwszdz") @PropertyDef(label = "气调期间仓内湿度最低值") private Double cnwszdz; @Column(name = "cnwspjz") @PropertyDef(label = "气调期间仓内湿度平均值") private Double cnwspjz; @Column(name = "ldndzgz") @PropertyDef(label = "气调期间粮堆氮气浓度最高值") private Double ldndzgz; @Column(name = "ldndzdz") @PropertyDef(label = "气调期间粮堆氮气浓度最低值") private Double ldndzdz; @Column(name = "ldndpjz") @PropertyDef(label = "气调期间粮堆氮气浓度平均值") private Double ldndpjz; @Column(name = "qtqlwzgz") @PropertyDef(label = "气调前粮温最高值") private Double qtqlwzgz; @Column(name = "qtqlwzdz") @PropertyDef(label = "气调前粮温最低值") private Double qtqlwzdz; @Column(name = "qtqlwpjz") @PropertyDef(label = "气调前粮温平均") private Double qtqlwpjz; @Column(name = "qthlwzgz") @PropertyDef(label = "气调后粮温最高值") private Double qthlwzgz; @Column(name = "qthlwzdz") @PropertyDef(label = "气调后粮温最低值") private Double qthlwzdz; @Column(name = "qthlwpjz") @PropertyDef(label = "气调后粮温平均") private Double qthlwpjz; @Column(name = "qtqsfzgz") @PropertyDef(label = "气调前粮水分最高值") private Double qtqsfzgz; @Column(name = "qtqsfzdz") @PropertyDef(label = "气调前粮水分最低值") private Double qtqsfzdz; @Column(name = "qtqsfpjz") @PropertyDef(label = "气调前粮水分平均") private Double qtqsfpjz; @Column(name = "qthsfzgz") @PropertyDef(label = "气调后粮水分最高值") private Double qthsfzgz; @Column(name = "qthsfzdz") @PropertyDef(label = "气调后粮水分最低值") private Double qthsfzdz; @Column(name = "qthsfpjz") @PropertyDef(label = "气调后粮水分平均") private Double qthsfpjz; @Column(name = "qtqchqk", length = 40) @PropertyDef(label = "气调前虫害情况") private String qtqchqk; @Column(name = "qthchqk", length = 40) @PropertyDef(label = "气调后虫害情况") private String qthchqk; @Column(name = "ycms", length = 40) @PropertyDef(label = "气调间异常情况描述") private String ycms; @Column(name = "czr", length = 40) @PropertyDef(label = "操作人") private String czr; @Column(name = "bz", length = 40) @PropertyDef(label = "备注") private String bz; @Column(name = "zhgxsj") @PropertyDef(label = "更新时间") private Date zhgxsj; }