jiazx0107@163.com
2023-10-31 e5e40869b53a0e8c9c4e86d3f488dceb08b3b845
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
package com.fzzy.gateway.hx2023.data;
 
import lombok.Data;
 
/**
 * 粮情信息详细
 */
@Data
public class GrainDataDetail {
 
    //根号
    private String cableNum;
 
    //层号
    private String layerNumber;
 
    //索引
    private String position;
 
    //温度值
    private String temperature;
 
    public GrainDataDetail() {
    }
 
    public GrainDataDetail(int cableNum, int layerNumber, int position, String temperature) {
        this.cableNum = cableNum + "";
        this.layerNumber = layerNumber + "";
        this.position = position + "";
        this.temperature = temperature;
    }
}