jiazx0107@163.com
2023-11-08 768308ab47041062d9e97745099784acf297286b
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
57
58
package com.fzzy.gateway.hx2023.data;
 
import lombok.Data;
 
/**
 * 粮情信息详细
 */
@Data
public class KafkaGrainDataDetail {
 
    //根号
    private String cableNum;
 
    //层号
    private String layerNumber;
 
    //温度值
    private String temperature;
 
    //索引,从0开始
    private String position;
 
    //该温度点所在的列,平方仓、地下仓必填
    private String linex;
 
    //该温度点所在的行,平方仓、地下仓必填
    private String rowy;
 
    //浅圆仓、筒仓必填,示例:{\"totalCircle\":3,\"smallCircle\":\"4,10,16\"},totalCircle:总圈数,smallCircle:每圈有几根缆
    private String total_circle;
 
 
    //具体圈数--浅圆仓、筒仓必填
    private String circle;
 
    public KafkaGrainDataDetail() {
    }
 
    public KafkaGrainDataDetail(String cableNum, String layerNumber, String temperature, String position, String linex, String rowy, String total_circle, String circle) {
        this.cableNum = cableNum;
        this.layerNumber = layerNumber;
        this.temperature = temperature;
        this.position = position;
        this.linex = linex;
        this.rowy = rowy;
        this.total_circle = total_circle;
        this.circle = circle;
    }
 
    public KafkaGrainDataDetail(String cableNum, String layerNumber, String temperature, String position, String linex, String rowy) {
        this.cableNum = cableNum;
        this.layerNumber = layerNumber;
        this.temperature = temperature;
        this.position = position;
        this.linex = linex;
        this.rowy = rowy;
    }
}