czt
2025-06-11 283da741b2429cf5a53786e5ee1b5528b757fdf6
igds-dzhwk-core/src/main/java/com/fzzy/igds/dzhwk/data/HwkDepotDto.java
@@ -16,37 +16,66 @@
public class HwkDepotDto implements Serializable {
    @PropertyDef(label = "廒间名")
    private String granary;
    private String granaryName;
    @PropertyDef(label = "货位名")
    private String depot;
    private String name;
    @PropertyDef(label = "仓温")
    private Double inTemp;
    private String inTemp = "--";
    @PropertyDef(label = "仓湿")
    private Double inHumidity;
    private String inHumidity = "--";
    @PropertyDef(label = "仓外温")
    private String outTemp = "--";
    @PropertyDef(label = "仓外湿")
    private String outHumidity = "--";
    @PropertyDef(label = "高温")
    private String maxTemp = "--";
    @PropertyDef(label = "低温")
    private String minTemp = "--";
    @PropertyDef(label = "均温")
    private String aveTemp = "--";
    @PropertyDef(label = "粮温检测时间")
    @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm", timezone = "GMT+8")
    private Date grainDate;
    @PropertyDef(label = "氧气")
    private String perO2;
    private String perO2 = "--";
    @PropertyDef(label = "磷化氢")
    private String perPh3;
    private String perPh3 = "--";
    @PropertyDef(label = "二氧化碳")
    private String perCo2 = "--";
    @PropertyDef(label = "气体检测时间")
    @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm", timezone = "GMT+8")
    private Date gasDate;
    @PropertyDef(label = "仓库类型")
    private String depotType;
    private String depotTypeName;
    @PropertyDef(label = "仓库状态")
    private String depotStatus;
    private String depotStatusName;
    @PropertyDef(label = "粮食品种")
    private String foodVariety;
    private String foodVarietyName;
    @PropertyDef(label = "实际储量")
    private Double storageReal = 0.0;
    @PropertyDef(label = "粮食等级")
    private String foodLevel;
    private String foodLevelName;
    @PropertyDef(label = "粮食性质")
    private String foodType;
    private String foodTypeName;
    @PropertyDef(label = "入库时间")
    @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd", timezone = "GMT+8")