package com.fzzy.igds.dzhwk.data;
|
|
import com.bstek.dorado.annotation.PropertyDef;
|
import lombok.Data;
|
|
/**
|
* 粮情数据解析对象-层信息
|
*/
|
@Data
|
public class GrainLay {
|
|
@PropertyDef(label = "所在层")
|
private int fz;
|
|
@PropertyDef(label = "所在层")
|
private int z;
|
|
@PropertyDef(label = "层最低温")
|
private Double tempMin;
|
|
@PropertyDef(label = "层最高温")
|
private Double tempMax;
|
|
@PropertyDef(label = "层平均温")
|
private Double tempAve = 0.0;
|
|
@PropertyDef(label = "内圈平均温度", description = "单位℃,粮情平均温度")
|
private Double tempAveIn = 0.0;
|
|
@PropertyDef(label = "外圈平均温度", description = "单位℃,粮情平均温度")
|
private Double tempAveOut = 0.0;
|
|
|
private int sumNum;//当前层总数
|
|
private int sumInNum;//内圈个数
|
|
private int sumOutNum;//外圈个数
|
|
private double sumTemp;//层总温度
|
|
private double sumInTemp;
|
|
private double sumOutTemp;
|
|
|
public GrainLay() {
|
super();
|
}
|
|
public GrainLay(int fz, int z) {
|
super();
|
this.fz = fz;
|
this.z = z;
|
}
|
}
|