czt
2025-06-11 283da741b2429cf5a53786e5ee1b5528b757fdf6
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
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;
 
}