package com.thhy.engineering.modules.biz.restdata.entity;
|
|
import com.thhy.general.annotations.Excel;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* @Author QiuYuHao
|
* @CreateDate 2023-09-15 14:57:19
|
* 静养区实体
|
*/
|
@Data
|
public class TRestDataVo {
|
|
private String id;
|
|
private String deviceId;
|
private Date checkTime;
|
private Date createTime;
|
|
@Excel(sort = 1,title = "设备名称")
|
private String deviceName;
|
|
@Excel(sort = 2,title = "温度")
|
private Double tem;
|
|
@Excel(sort = 3,title = "湿度")
|
private Double hum;
|
|
@Excel(sort = 4,title = "检测时间")
|
private String checkDate;
|
|
@Excel(sort = 5,title = "采集时间")
|
private String createDate;
|
}
|