czt
2025-06-09 13b6ad41f0b057f8405f7976a990e9057547443a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
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;
 
}