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; } }