| package com.fzzy.async.fzzy61.entity; | 
|   | 
| 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; | 
|   | 
| /** | 
|  * 通风数据 | 
|  * @author vince | 
|  * | 
|  */ | 
| @Data | 
| @Entity | 
| @Table(name = "D_AREATION_DATA") | 
| public class Fz61AreationData implements Serializable { | 
|   | 
|     public static String SORT_PROP = "id"; | 
|   | 
|     @Id | 
|     @Column(name = "ID_", length = 41) | 
|     @PropertyDef(label = "主键") | 
|     private String id; | 
|   | 
|     @Column(name = "COMPANY_ID_", length = 10) | 
|     @PropertyDef(label = "组织编码") | 
|     private String companyId; | 
|   | 
|     @Column(name = "DEPT_ID_", length = 40) | 
|     @PropertyDef(label = "所属分库") | 
|     private String deptId; | 
|   | 
|     @Column(name = "DEPOT_ID_", length = 50) | 
|     @PropertyDef(label = "操作仓库") | 
|     private String depotId; | 
|   | 
|     @Column(name = "OBJECTIVE_", length = 100) | 
|     @PropertyDef(label = "通风目的") | 
|     private String objective; | 
|   | 
|     @PropertyDef(label = "粮堆孔隙度") | 
|     @Column(name = "ldkxd", precision = 10, scale = 3) | 
|     private Double ldkxd; | 
|   | 
|     /** | 
|      * 1:自然空气通风 | 
|      * 2:加热空气通风 | 
|      * 3:冷却空气通风 | 
|      * 4:内循环控温 | 
|      * 5:空调控温通风 | 
|      * 6:维持通风 | 
|      */ | 
|     @Column(name = "TYPE_", length = 10) | 
|     @PropertyDef(label = "通风类型") | 
|     private String type; | 
|     /** | 
|      * 1:地槽 | 
|      * 2:地上笼 | 
|      * 3:移动式 | 
|      * 4:箱式 | 
|      * 5:径向 | 
|      * 6:夹底 | 
|      * 9:其他 | 
|      */ | 
|     @Column(name = "WIND_NET_TYPE_", length = 10) | 
|     @PropertyDef(label = "风网类型") | 
|     private String windNetType; | 
|   | 
|     @PropertyDef(label = "风网设置方式") | 
|     @Column(name = "fwszfs", length = 64) | 
|     private String fwszfs; | 
|   | 
|     @PropertyDef(label = "主风道截面积") | 
|     @Column(name = "zfdjmj", precision = 10, scale = 3) | 
|     private Double zfdjmj; | 
|   | 
|     @PropertyDef(label = "支风道截面积") | 
|     @Column(name = "zhfdjmj", precision = 10, scale = 3) | 
|     private Double zhfdjmj; | 
|   | 
|     @PropertyDef(label = "支风道总长度") | 
|     @Column(name = "zfdzcd", precision = 20, scale = 3) | 
|     private Double zfdzcd; | 
|   | 
|     @PropertyDef(label = "风网开孔率") | 
|     @Column(name = "fwkkl", precision = 10, scale = 3) | 
|     private Double fwkkl; | 
|   | 
|     @PropertyDef(label = "空气途径比") | 
|     @Column(name = "kqtjb", precision = 10, scale = 3) | 
|     private Double kqtjb; | 
|   | 
|     @PropertyDef(label = "通风口设置个数") | 
|     @Column(name = "tfkszgs") | 
|     private Integer tfkszgs; | 
|   | 
|     @PropertyDef(label = "通风机型号") | 
|     @Column(name = "tfjxh", length = 128) | 
|     private String tfjxh; | 
|   | 
|     @PropertyDef(label = "通风机台数") | 
|     @Column(name = "tfjts") | 
|     private Integer tfjts; | 
|   | 
|     @PropertyDef(label = "单台风机额定全压") | 
|     @Column(name = "dtfjedqy", precision = 10, scale = 3) | 
|     private Double dtfjedqy; | 
|   | 
|     @PropertyDef(label = "单台风机额定风量") | 
|     @Column(name = "dtfjedfl", precision = 10, scale = 3) | 
|     private Double dtfjedfl; | 
|   | 
|     @PropertyDef(label = "单台风机额定功率") | 
|     @Column(name = "dtfjedgl", precision = 10, scale = 3) | 
|     private Double dtfjedgl; | 
|   | 
|     /** | 
|      * 1:压入式通风 | 
|      * 2:吸出式通风 | 
|      * 3:压入与吸出相结合式通风 | 
|      * 4:环流通风 | 
|      * 9:其它 | 
|      */ | 
|     @Column(name = "AIR_SUPPLY_MODE_", length = 10) | 
|     @PropertyDef(label = "送风方式") | 
|     private String airSupplyMode; | 
|   | 
|     @PropertyDef(label = "单台风机实测风量") | 
|     @Column(name = "dtfjscfl", precision = 10, scale = 3) | 
|     private Double dtfjscfl; | 
|   | 
|     @PropertyDef(label = "单台风机轴功率") | 
|     @Column(name = "dtfjzgl", precision = 10, scale = 3) | 
|     private Double dtfjzgl; | 
|   | 
|     @PropertyDef(label = "总风量") | 
|     @Column(name = "zfl", precision = 10, scale = 3) | 
|     private Double zfl; | 
|   | 
|     @PropertyDef(label = "单位通风量") | 
|     @Column(name = "dwtfl", precision = 10, scale = 3) | 
|     private Double dwtfl; | 
|   | 
|     @PropertyDef(label = "实测系统阻力") | 
|     @Column(name = "scxtzl", precision = 10, scale = 3) | 
|     private Double scxtzl; | 
|   | 
|     /** | 
|      * 总耗电量 千瓦 | 
|      */ | 
|     @Column(name = "TOTAL_ES_") | 
|     @PropertyDef(label = "总耗电量") | 
|     private Double totalEs; | 
|   | 
|     @PropertyDef(label = "作业时气温") | 
|     @Column(name = "zysqw", precision = 10, scale = 3) | 
|     private double zysqw; | 
|   | 
|     @PropertyDef(label = "作业时气湿") | 
|     @Column(name = "zysqs", precision = 10, scale = 3) | 
|     private double zysqs; | 
|   | 
|     @Column(name = "BEFORE_TEMP_AVG_") | 
|     @PropertyDef(label = "作业前平均粮温") | 
|     private Double beforeTempAvg; | 
|   | 
|     @Column(name = "AFTER_TEMP_AVG_") | 
|     @PropertyDef(label = "作业后平均粮温") | 
|     private Double afterTempAvg; | 
|   | 
|     @PropertyDef(label = "降温幅度") | 
|     @Column(name = "jwfd", precision = 10, scale = 3) | 
|     private double jwfd; | 
|   | 
|     @PropertyDef(label = "吨粮降温能耗") | 
|     @Column(name = "dljwnh", precision = 10, scale = 3) | 
|     private double dljwnh; | 
|   | 
|     @PropertyDef(label = "失水率") | 
|     @Column(name = "ssl_", precision = 10, scale = 3) | 
|     private double ssl; | 
|   | 
|     @PropertyDef(label = "保水效果评价结果") | 
|     @Column(name = "bsxgpjjg", length = 128) | 
|     private String bsxgpjjg; | 
|   | 
|     @PropertyDef(label = "通风降温均匀性评价_整仓") | 
|     @Column(name = "tfjwjyxpjzc", length = 128) | 
|     private String tfjwjyxpjzc; | 
|   | 
|     @PropertyDef(label = "通风降温均匀性评价_上层") | 
|     @Column(name = "tfjwjyxpjsc", length = 128) | 
|     private String tfjwjyxpjsc; | 
|   | 
|     @PropertyDef(label = "通风降温均匀性评价_中(间)层") | 
|     @Column(name = "tfjwjyxpjzjc", length = 128) | 
|     private String tfjwjyxpjzjc; | 
|   | 
|     @PropertyDef(label = "通风降温均匀性评价_下层") | 
|     @Column(name = "tfjwjyxpjxc", length = 128) | 
|     private String tfjwjyxpjxc; | 
|   | 
|     @Column(name = "BEFORE_PER_WET_AVG_") | 
|     @PropertyDef(label = "作业前平均水分") | 
|     private Double beforPerWetAvg; | 
|   | 
|     @Column(name = "AFTER_PER_WET_AVG_") | 
|     @PropertyDef(label = "作业后平均水分") | 
|     private Double afterPerWetAvg; | 
|   | 
|     @PropertyDef(label = "降水幅度") | 
|     @Column(name = "jsfd", precision = 10, scale = 3) | 
|     private Double jsfd; | 
|   | 
|     @PropertyDef(label = "吨粮降水能耗") | 
|     @Column(name = "dljsnh", precision = 10, scale = 3) | 
|     private Double dljsnh; | 
|   | 
|     @PropertyDef(label = "通风降水均匀性分析_整仓") | 
|     @Column(name = "tfjsjyxfxzc", length = 128) | 
|     private String tfjsjyxfxzc; | 
|   | 
|     @PropertyDef(label = "通风降水均匀性分析_上层") | 
|     @Column(name = "tfjsjyxfxsc", length = 128) | 
|     private String tfjsjyxfxsc; | 
|   | 
|     @PropertyDef(label = "通风降水均匀性分析_中(间)层") | 
|     @Column(name = "tfjsjyxfxzjc", length = 128) | 
|     private String tfjsjyxfxzjc; | 
|   | 
|     @PropertyDef(label = "通风降水均匀性分析_下层") | 
|     @Column(name = "tfjsjyxfxxc", length = 128) | 
|     private String tfjsjyxfxxc; | 
|   | 
|     @Column(name = "CHARGE_USER_", length = 30) | 
|     @PropertyDef(label = "负责人", description = "通风作业负责人") | 
|     private String chargeUser; | 
|     @Column(name = "OPERATORS_", length = 30) | 
|     @PropertyDef(label = "作业人员", description = "通风作业人") | 
|     private String operators; | 
|   | 
|     @Column(name = "START_TIME_") | 
|     @PropertyDef(label = "通风作业时间") | 
|     private Date startTime; | 
|   | 
|     @Column(name = "LONG_TIME_") | 
|     @PropertyDef(label = "通风时长,单位小时") | 
|     private Double longTime; | 
|   | 
|     @Column(name = "UPDATE_TIME_") | 
|     @PropertyDef(label = "修改时间", description = "最后修改时间") | 
|     private Date updateTime; | 
|   | 
|     @Column(name = "UPDATE_USER_", length = 30) | 
|     @PropertyDef(label = "修改人", description = "最后修改人") | 
|     private String updateUser; | 
|   | 
|     @Column(name = "REMARK_", length = 200) | 
|     @PropertyDef(label = "备注信息") | 
|     private String remark; | 
|   | 
| } |