邱宇豪
2023-11-01 21db563b4f218e04cdf07ee442af76d929e8da3a
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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;
}