package com.thhy.engineering.modules.biz.device.entity;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
import lombok.Getter;
|
import lombok.Setter;
|
import lombok.ToString;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
@Data
|
@Getter
|
@Setter
|
@ToString
|
public class TSteam implements Serializable {
|
/**
|
* 蒸养窑编号
|
*/
|
private String steamId;
|
|
/**
|
* 设备编号
|
*/
|
private String deviceId;
|
private String deviceName;
|
|
/**
|
* 温度
|
*/
|
private Double temperature;
|
|
/**
|
* 湿度
|
*/
|
private Double humidity;
|
|
/**
|
* 采集时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date gatherTime;
|
|
/**
|
* 蒸养窑
|
*/
|
private String steamName;
|
|
/**
|
* This field was generated by MyBatis Generator.
|
* This field corresponds to the database table t_steam
|
*
|
* @mbg.generated Thu May 11 14:20:00 CST 2023
|
*/
|
private static final long serialVersionUID = 1L;
|
}
|