package com.ld.igds.common.dto; import java.io.Serializable; import java.util.Date; import lombok.Data; import com.bstek.dorado.annotation.PropertyDef; /** * 业务数据:粮食温度湿度统计信息 * * @author Andy * */ @Data public class THDto implements Serializable { private static final long serialVersionUID = 1L; @PropertyDef(label = "组织编码", description = "") private String companyId; private String serId;//所属分机 private String thConf = "1";//所属通道 @PropertyDef(label = "所属仓库", description = "仓库编号") private String depotId; @PropertyDef(label = "仓内温度", description = "单位℃") private Double tempIn; @PropertyDef(label = "仓内湿度", description = "单位%RH") private Double humidityIn; @PropertyDef(label = "接收时间", description = "") private Date receiveDate = new Date(); private String remark; }