package com.ld.igds.grain.dto;
|
|
|
import com.bstek.dorado.annotation.PropertyDef;
|
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
/**
|
* 粮情的报表数据,将每一层的数据使用一个对象展示出来,默认4层
|
*
|
* @author jiazx
|
*
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
public class GrainDataReport extends GrainData {
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
@PropertyDef(label = "粮食品种")
|
private String foodVariety;
|
|
@PropertyDef(label = "实际储量", description = "单位:吨")
|
private Double storageReal;
|
|
@PropertyDef(label = "仓库类型", description = "普通平房仓")
|
private String depotTypeName;
|
|
@PropertyDef(label = "仓库类型", description = "普通平房仓")
|
private String depotType;
|
|
@PropertyDef(label = "保管员", description = "中文名称")
|
private String storeKeeperName;
|
|
@PropertyDef(label = "水分")
|
private String perWet = "--";
|
|
@PropertyDef(label = "杂质", description = "百分比")
|
private String perImpurity = "--";
|
|
@PropertyDef(label = "最高层数")
|
private int maxZ;
|
|
// --- 以下是所有层信息---//
|
|
@PropertyDef(label = "所在层")
|
private int z1;
|
@PropertyDef(label = "层最低温")
|
private String tempMin1 = "--";
|
@PropertyDef(label = "层最高温")
|
private String tempMax1 = "--";
|
@PropertyDef(label = "层平均温")
|
private String tempAve1 = "--";
|
@PropertyDef(label = "所在层")
|
private int z2;
|
@PropertyDef(label = "层最低温")
|
private String tempMin2 = "--";
|
@PropertyDef(label = "层最高温")
|
private String tempMax2 = "--";
|
@PropertyDef(label = "层平均温")
|
private String tempAve2 = "--";
|
|
@PropertyDef(label = "所在层")
|
private int z3;
|
@PropertyDef(label = "层最低温")
|
private String tempMin3 = "--";
|
@PropertyDef(label = "层最高温")
|
private String tempMax3 = "--";
|
@PropertyDef(label = "层平均温")
|
private String tempAve3 = "--";
|
|
@PropertyDef(label = "所在层")
|
private int z4;
|
@PropertyDef(label = "层最低温")
|
private String tempMin4 = "--";
|
@PropertyDef(label = "层最高温")
|
private String tempMax4 = "--";
|
@PropertyDef(label = "层平均温")
|
private String tempAve4 = "--";
|
|
@PropertyDef(label = "所在层")
|
private int z5;
|
@PropertyDef(label = "层最低温")
|
private String tempMin5 = "--";
|
@PropertyDef(label = "层最高温")
|
private String tempMax5 = "--";
|
@PropertyDef(label = "层平均温")
|
private String tempAve5 = "--";
|
|
@PropertyDef(label = "所在层")
|
private int z6;
|
@PropertyDef(label = "层最低温")
|
private String tempMin6 = "--";
|
@PropertyDef(label = "层最高温")
|
private String tempMax6 = "--";
|
@PropertyDef(label = "层平均温")
|
private String tempAve6 = "--";
|
|
@PropertyDef(label = "所在层")
|
private int z7;
|
@PropertyDef(label = "层最低温")
|
private String tempMin7 = "--";
|
@PropertyDef(label = "层最高温")
|
private String tempMax7 = "--";
|
@PropertyDef(label = "层平均温")
|
private String tempAve7 = "--";
|
|
@PropertyDef(label = "所在层")
|
private int z8;
|
@PropertyDef(label = "层最低温")
|
private String tempMin8 = "--";
|
@PropertyDef(label = "层最高温")
|
private String tempMax8 = "--";
|
@PropertyDef(label = "层平均温")
|
private String tempAve8 = "--";
|
|
@PropertyDef(label = "所在层")
|
private int z9;
|
@PropertyDef(label = "层最低温")
|
private String tempMin9 = "--";
|
@PropertyDef(label = "层最高温")
|
private String tempMax9 = "--";
|
@PropertyDef(label = "层平均温")
|
private String tempAve9 = "--";
|
|
@PropertyDef(label = "所在层")
|
private int z10;
|
@PropertyDef(label = "层最低温")
|
private String tempMin10 = "--";
|
@PropertyDef(label = "层最高温")
|
private String tempMax10 = "--";
|
@PropertyDef(label = "层平均温")
|
private String tempAve10 = "--";
|
|
}
|