jiazx0107@163.com
2023-10-31 e95de698a8a0619ede3d5b672ebaf24cac321297
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 int cableNum;
 
    //层号
    private int layerNumber;
 
    //索引
    private int 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;
    }
}