jiazx0107@163.com
2023-05-17 620eab6cca2bc9ef9ea6d3067a0a5ba1deadbd1c
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
package com.ld.igds.grain.dto;
 
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
 
/**
 * 粮情数据解析对象-采集点对象信息,XYZ表示的列行层,数值从1开始。
 * 
 */
@Data
public class GrainPoint {
 
    @PropertyDef(label = "所在层")
    private int z;
    
    @PropertyDef(label = "所在层")
    private int fz;
 
    @PropertyDef(label = "所在列,筒仓所在圈数")
    private int x;
 
    @PropertyDef(label = "所在行,筒仓根号,总根号")
    private int y;
 
    @PropertyDef(label = "采集点温度")
    private Double temp = 0.0;
 
    public GrainPoint() {
        super();
    }
 
    public GrainPoint(Double temp,int x, int y, int z, int fz) {
        super();
        this.z = z;
        this.x = x;
        this.y = y;
        this.fz = fz;
        this.temp = temp;
    }
 
}