vince
2025-03-06 88763f2ae21e9d3771ba744577edcc2d344802a6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package com.fzzy.protocol.data;
 
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * 业务数据:粮食温度湿度统计信息
 *
 * @author Andy
 */
@Data
public class THDto implements Serializable {
 
 
    private static final long serialVersionUID = 1L;
 
    private String serId;//所属分机
 
    private String thAddr = "1";//所属通道
 
    @PropertyDef(label = "所属仓库", description = "仓库编号")
    private String depotId;
 
    @PropertyDef(label = "仓内温度", description = "单位℃")
    private Double tempIn;
 
    @PropertyDef(label = "仓内湿度", description = "单位%RH")
    private Double humidityIn;
 
    @PropertyDef(label = "接收时间")
    private Date receiveDate = new Date();
 
    private String remark;
 
}