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_COLD_VALLEY")
|
public class ColdValley 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 = "lqtfmd", length = 40)
|
@PropertyDef(label = "冷却通风目的")
|
private String lqtfmd;
|
|
@Column(name = "lqsfwd")
|
@PropertyDef(label = "冷却送风温度")
|
private Double lqsfwd;
|
|
@Column(name = "lqsfsd")
|
@PropertyDef(label = "冷却送风湿度")
|
private Double lqsfsd;
|
|
@Column(name = "ljtfsj")
|
@PropertyDef(label = "累计通风时间")
|
private Double ljtfsj;
|
|
@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 = "wszgz")
|
@PropertyDef(label = "通风期间外湿最高值")
|
private Double wszgz;
|
|
@Column(name = "wszdz")
|
@PropertyDef(label = "通风期间外湿最低值")
|
private Double wszdz;
|
|
@Column(name = "wspjz")
|
@PropertyDef(label = "通风期间外湿平均值")
|
private Double wspjz;
|
|
@Column(name = "qlwzgz")
|
@PropertyDef(label = "通风前粮温最高值")
|
private Double qlwzgz;
|
|
@Column(name = "qlwzdz")
|
@PropertyDef(label = "通风前粮温最低值")
|
private Double qlwzdz;
|
|
@Column(name = "qlwpjz")
|
@PropertyDef(label = "通风前粮温平均值")
|
private Double qlwpjz;
|
|
@Column(name = "hlwzgz")
|
@PropertyDef(label = "通风后粮温最高值")
|
private Double hlwzgz;
|
|
@Column(name = "hlwzdz")
|
@PropertyDef(label = "通风后粮温最低值")
|
private Double hlwzdz;
|
|
@Column(name = "hlwpjz")
|
@PropertyDef(label = "通风后粮温平均值")
|
private Double hlwpjz;
|
|
@Column(name = "qlszgz")
|
@PropertyDef(label = "通风前粮湿度最高值")
|
private Double qlszgz;
|
|
@Column(name = "qlszdz")
|
@PropertyDef(label = "通风前粮湿度最低值")
|
private Double qlszdz;
|
|
@Column(name = "qlspjz")
|
@PropertyDef(label = "通风前粮湿度平均值")
|
private Double qlspjz;
|
|
@Column(name = "hlszgz")
|
@PropertyDef(label = "通风后粮湿度最高值")
|
private Double hlszgz;
|
|
@Column(name = "hlszdz")
|
@PropertyDef(label = "通风后粮湿度最低值")
|
private Double hlszdz;
|
|
@Column(name = "hlspjz")
|
@PropertyDef(label = "通风后粮湿度平均值")
|
private Double hlspjz;
|
|
@Column(name = "zhdl", length = 40)
|
@PropertyDef(label = "总耗电量")
|
private String zhdl;
|
|
@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;
|
|
}
|