vince
2025-07-09 6495040bbda5308c86e852ad1b080097bfa916a9
src/main/java/com/fzzy/protocol/data/THDto.java
@@ -8,32 +8,31 @@
/**
 * 业务数据:粮食温度湿度统计信息
 *
 * @author Andy
 *
 * @author Andy
 */
@Data
public class THDto implements Serializable {
   private static final long serialVersionUID = 1L;
   private String serId;//所属分机
    private static final long serialVersionUID = 1L;
   private String thAddr = "1";//所属通道
    private String serId;//所属分机
   @PropertyDef(label = "所属仓库", description = "仓库编号")
   private String depotId;
    private String thAddr = "1";//所属通道
   @PropertyDef(label = "仓内温度", description = "单位℃")
   private Double tempIn;
    @PropertyDef(label = "所属仓库", description = "仓库编号")
    private String depotId;
   @PropertyDef(label = "仓内湿度", description = "单位%RH")
   private Double humidityIn;
   @PropertyDef(label = "接收时间")
   private Date receiveDate = new Date();
    @PropertyDef(label = "仓内温度", description = "单位℃")
    private Double tempIn;
   private String remark;
    @PropertyDef(label = "仓内湿度", description = "单位%RH")
    private Double humidityIn;
    @PropertyDef(label = "接收时间")
    private Date receiveDate = new Date();
    private String remark;
}