vince
2023-12-19 c8a4f3f8327b4a2290d719503211adb8845e6fd8
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
package com.fzzy.gateway.hx2023.data;
 
import lombok.Data;
 
/**
 * 粮情信息详细
 */
@Data
public class GrainTH {
 
    //根号
    private String cableNum;
 
    //层号
    private String layerNumber;
 
    //温度值
    private String temperature;
 
    //温度值
    private String humidity;
 
    //索引,从0开始
    private String position;
 
 
    public GrainTH() {
    }
 
    public GrainTH(String temperature, String humidity ,String position) {
        this.humidity = humidity;
        this.temperature = temperature;
        this.position = position;
    }
}