CZT
2023-12-21 637e5d4b9b37f165c639ed74cdaf7b98c514473b
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
package com.fzzy.push.sh2023.dto;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
 
/**
 * 接口表-库区图仓房点位标注
 */
@Data
public class SH2023Api1110 implements Serializable {
 
    /**
     *
     */
    private static final long serialVersionUID = 2592349036859314053L;
 
    @PropertyDef(label = "库区代码")
    private String kqdm;
 
    @PropertyDef(label = "廒间代码")
    private String ajdm;
 
    @PropertyDef(label = "廒间相对位置")
    private String ajxdwz;
 
    @PropertyDef(label = "廒间位置样式")
    private String ajwzys;
 
    @PropertyDef(label = "备注")
    private String bz;
 
    @PropertyDef(label = "操作标志")
    private String czbz;
 
    @PropertyDef(label = "最后更新时间")
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    private Date zhgxsj;
    
    @PropertyDef(label = "标记位")
    private String bjw;
 
}