package com.fzzy.igds.dzhwk.v1.dto;
|
|
import com.bstek.dorado.annotation.PropertyDef;
|
import lombok.Data;
|
|
/**
|
* 接口表-谷冷作业
|
*
|
*/
|
@Data
|
public class ApiV1Data2007 {
|
|
@PropertyDef(label = "谷冷作业单号")
|
private String zydh;
|
|
@PropertyDef(label = "廒间代码")
|
private String ajdm;
|
|
@PropertyDef(label = "通风开始时间")
|
private String kssj;
|
|
@PropertyDef(label = "通风结束时间")
|
private String jssj;
|
|
@PropertyDef(label = "粮食品种")
|
private String lspzdm;
|
|
@PropertyDef(label = "粮食数量")
|
private Double lssl;
|
|
@PropertyDef(label = "冷却通风目的")
|
private String lqtfmd;
|
|
@PropertyDef(label = "冷却送风温度")
|
private Double lqsfwd;
|
|
@PropertyDef(label = "冷却送风湿度")
|
private Double lqsfsd;
|
|
@PropertyDef(label = "累计通风时间")
|
private Double ljtfsj;
|
|
@PropertyDef(label = "通风期间外温最高值")
|
private Double wwzgz;
|
|
@PropertyDef(label = "通风期间外温最低值")
|
private Double wwzdz;
|
|
@PropertyDef(label = "通风期间外温平均值")
|
private Double wwpjz;
|
|
@PropertyDef(label = "通风期间外湿最高值")
|
private Double wszgz;
|
|
@PropertyDef(label = "通风期间外湿最低值")
|
private Double wszdz;
|
|
@PropertyDef(label = "通风期间外湿平均值")
|
private Double wspjz;
|
|
@PropertyDef(label = "通风前粮温最高值")
|
private Double qlwzgz;
|
|
@PropertyDef(label = "通风前粮温最低值")
|
private Double qlwzdz;
|
|
@PropertyDef(label = "通风前粮温平均值")
|
private Double qlwpjz;
|
|
@PropertyDef(label = "通风后粮温最高值")
|
private Double hlwzgz;
|
|
@PropertyDef(label = "通风后粮温最低值")
|
private Double hlwzdz;
|
|
@PropertyDef(label = "通风后粮温平均值")
|
private Double hlwpjz;
|
|
@PropertyDef(label = "通风前粮湿度最高值")
|
private Double qlszgz;
|
|
@PropertyDef(label = "通风前粮湿度最低值")
|
private Double qlszdz;
|
|
@PropertyDef(label = "通风前粮湿度平均值")
|
private Double qlspjz;
|
|
@PropertyDef(label = "通风后粮湿度最高值")
|
private Double hlszgz;
|
|
@PropertyDef(label = "通风后粮湿度最低值")
|
private Double hlszdz;
|
|
@PropertyDef(label = "通风后粮湿度平均值")
|
private Double hlspjz;
|
|
@PropertyDef(label = "总耗电量")
|
private String zhdl;
|
|
@PropertyDef(label = "操作人")
|
private String czr;
|
|
@PropertyDef(label = "备注")
|
private Integer bz;
|
|
@PropertyDef(label = "更新时间")
|
private String zhgxsj;
|
|
}
|