czt
昨天 9f6dacf7b39e5aeba37d8faf575c9e56d8cbe51a
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
package com.fzzy.push.gd2023.dto;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * 接口表-单位
 *
 * @author vince
 */
@Data
@EqualsAndHashCode(callSuper = false)
public class Gd2023Api1101 implements Serializable {
    /**
     *
     */
    private static final long serialVersionUID = 9157617424050247565L;
    
    @PropertyDef(label = "单位代码")
    private String dwdm;
 
    @PropertyDef(label = "单位名称")
    private String dwmc;
 
    @PropertyDef(label = "统一单位编码")
    private String tydwbm;
 
    @PropertyDef(label = "单位类型")
    private String dwlx;
 
    @PropertyDef(label = "注册日期")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
    @JSONField(format = "yyyy-MM-dd")
    private Date zcrq;
 
    @PropertyDef(label = "注册资本")
    private Double zczb;
 
    @PropertyDef(label = "资产总额")
    private Double zcze;
 
    @PropertyDef(label = "法定代表人")
    private String fddbr;
 
    @PropertyDef(label = "法人身份证号")
    private String frsfzh;
 
    @PropertyDef(label = "法人联系方式")
    private String frlxfs;
 
    @PropertyDef(label = "企业联系人")
    private String qylxr;
 
    @PropertyDef(label = "办公电话")
    private String bgdh;
 
    @PropertyDef(label = "注册地址")
    private String zcdz;
 
    @PropertyDef(label = "电子邮箱")
    private String dzyx;
 
    @PropertyDef(label = "企业官方网站地址")
    private String qygfwzdz;
 
    @PropertyDef(label = "传真号码")
    private String czhm;
 
    @PropertyDef(label = "邮政编码")
    private String yzbm;
 
    @PropertyDef(label = "行政区划代码")
    private String xzqhdm;
 
    @PropertyDef(label = "上级单位名称")
    private String sjdwmc;
 
    @PropertyDef(label = "上级单位代码")
    private String sjdwdm;
 
    @PropertyDef(label = "上级单位统一代码")
    private String sjdwtybm;
 
    @PropertyDef(label = "库区数")
    private Integer kqs;
 
    @PropertyDef(label = "仓房数")
    private Integer cfs;
 
    @PropertyDef(label = "油罐数")
    private Integer ygs;
 
    @PropertyDef(label = "经度")
    private Double jd;
 
    @PropertyDef(label = "纬度")
    private Double wd;
 
    @PropertyDef(label = "单位状态")
    private String dwzt;
 
    @PropertyDef(label = "备案类型")
    private String balx;
 
    @PropertyDef(label = "仓储业务类型")
    private String ccywlx;
 
    @PropertyDef(label = "仓储品种")
    private String ccpz;
 
    @PropertyDef(label = "备案状态")
    private String bazt;
 
    @PropertyDef(label = "操作标志")
    private String czbz;
 
    @PropertyDef(label = "最后更新时间")
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    private Date zhgxsj;
 
}