CZT
2023-12-01 9541189ca4c0e4dc21a6402d5f879b63d892eb60
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
package com.fzzy.push.sh2023.dto;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fzzy.api.entity.ApiParent;
import lombok.Data;
 
import javax.persistence.Transient;
import java.io.Serializable;
import java.util.Date;
import java.util.List;
 
/**
 * 粮情设备配置
 *
 * @author czt
 * @date 2023-08-21
 */
@Data
public class SH2023Api2103 implements Serializable {
 
    private static final long serialVersionUID = 9157617424050247565L;
 
    @PropertyDef(label = "货位代码")
    private String hwdm;
 
    @PropertyDef(label = "电缆行数")
    private String dlhs;
 
    @PropertyDef(label = "电缆列数")
    private String dlls;
 
    @PropertyDef(label = "电缆层数")
    private String dlcs;
 
    @PropertyDef(label = "电缆圈数")
    private String dlqs;
 
    @PropertyDef(label = "电缆圈排列详情")
    private String dlqplxq;
 
    @PropertyDef(label = "上层起点")
    private String scqd;
 
    @PropertyDef(label = "上层终点")
    private String sczd;
 
    @PropertyDef(label = "中层起点")
    private String zcqd;
 
    @PropertyDef(label = "中层终点")
    private String zczd;
 
    @PropertyDef(label = "下层起点")
    private String xcqd;
 
    @PropertyDef(label = "下层终点")
    private String xczd;
 
    @PropertyDef(label = "有效范围起始层")
    private String yxfwqsc;
 
    @PropertyDef(label = "有效范围结束层")
    private String yxfwjsc;
 
    @PropertyDef(label = "标记位")
    private String bjw;
 
    @PropertyDef(label = "操作标志")
    private String czbz;
 
    @PropertyDef(label = "最后更新时间")
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    private Date zhgxsj;
 
    @Transient
    @JSONField(serialize = false)
    private List<SH2023Api2103Item> sh2023Api2103Items;
 
}