package com.fzzy.igds.dzhwk.data;
|
|
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;
|
}
|
|
}
|