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 granary;
|
|
@PropertyDef(label = "货位名")
|
private String depot;
|
|
@PropertyDef(label = "仓温")
|
private Double inTemp;
|
|
@PropertyDef(label = "仓湿")
|
private Double inHumidity;
|
|
@PropertyDef(label = "氧气")
|
private String perO2;
|
|
@PropertyDef(label = "磷化氢")
|
private String perPh3;
|
|
@PropertyDef(label = "仓库类型")
|
private String depotType;
|
|
@PropertyDef(label = "仓库状态")
|
private String depotStatus;
|
|
@PropertyDef(label = "粮食品种")
|
private String foodVariety;
|
|
@PropertyDef(label = "粮食等级")
|
private String foodLevel;
|
|
@PropertyDef(label = "粮食性质")
|
private String foodType;
|
|
@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;
|
|
}
|