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;
|
|
}
|