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.igds.data;
|
| import lombok.Data;
|
| /**
| * 粮情数据解析对象-采集点对象信息,XYZ表示的列行层,数值从1开始。
| *
| */
| @Data
| public class GrainPoint {
|
| private int z; // 所在层
|
| private int fz; // 所在层
|
| private int x; //所在列,筒仓所在圈数
|
| private int y; //所在行,筒仓根号,总根号
|
| 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;
| }
|
| }
|
|