package com.fzzy.igds.dzhwk.data; import com.bstek.dorado.annotation.PropertyDef; import com.fasterxml.jackson.annotation.JsonFormat; import lombok.Data; import java.io.Serializable; import java.util.Date; /** * @Description 货位卡信息-封装 * @Author CZT * @Date 2025/06/06 15:39 */ @Data public class HwkDepotDto implements Serializable { @PropertyDef(label = "廒间名") private String granaryName; @PropertyDef(label = "货位名") private String name; @PropertyDef(label = "仓温") private String inTemp = "--"; @PropertyDef(label = "仓湿") 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 = "--"; @PropertyDef(label = "磷化氢") 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 depotTypeName; @PropertyDef(label = "仓库状态") private String depotStatusName; @PropertyDef(label = "粮食品种") private String foodVarietyName; @PropertyDef(label = "实际储量") private Double storageReal = 0.0; @PropertyDef(label = "粮食等级") private String foodLevelName; @PropertyDef(label = "粮食性质") private String foodTypeName; @PropertyDef(label = "入库时间") @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd", timezone = "GMT+8") private Date storeDate; @PropertyDef(label = "粮食年份") private String foodYear; @PropertyDef(label = "保管员", description = "中文名称") private String storeKeeperName; @PropertyDef(label = "保管员电话") private String storeKeeperPhone = "---"; @PropertyDef(label = "保管员头像路径") private String userImgPath; }