package com.ld.igds.grain.dto;
|
|
import com.bstek.dorado.annotation.PropertyDef;
|
import lombok.Data;
|
|
/**
|
* 粮情数据解析对象-列信息
|
*/
|
@Data
|
public class GrainRow {
|
|
@PropertyDef(label = "所在行", description = "数据从0开始,如果是筒仓的话,用于记录筒仓的根数")
|
private int y;
|
|
@PropertyDef(label = "层最低温")
|
private Double tempMin;
|
|
@PropertyDef(label = "层最高温")
|
private Double tempMax;
|
|
@PropertyDef(label = "层平均温")
|
private Double tempAve = 0.0;
|
|
private int sumNum;// 当前层总数
|
|
private double sumTemp;// 层总温度
|
|
public GrainRow() {
|
super();
|
}
|
|
public GrainRow(int y) {
|
super();
|
this.y = y;
|
}
|
}
|