YYC
2025-09-22 f43613cc5aba07a9cb0482b7171ae6569c901e50
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
package com.fzzy.api.entity;
 
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 javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import java.io.Serializable;
import java.util.Date;
 
/**
 * 对农收购-单位信息
 *
 */
@Data
@Entity
@Table(name = "API_9109")
@EqualsAndHashCode(callSuper = false)
public class Api9109 implements Serializable {
 
    private static final long serialVersionUID = -1576606957466142145L;
 
    @Id
    @PropertyDef(label = "单位代码")
    @Column(name = "dwdm", length = 18)
    private String dwdm;
 
    @PropertyDef(label = "单位名称")
    @Column(name = "dwmc", length = 256)
    private String dwmc;
 
    @PropertyDef(label = "单位类型")
    @Column(name = "dwlx", length = 2)
    private String dwlx;
 
    @PropertyDef(label = "法定代表人")
    @Column(name = "fddbr", length = 100)
    private String fddbr;
 
    @PropertyDef(label = "法人身份证号")
    @Column(name = "frsfzh", length = 18)
    private String frsfzh;
 
    @PropertyDef(label = "法人联系方式")
    @Column(name = "frlxfs", length = 50)
    private String frlxfs;
 
    @PropertyDef(label = "企业联系人")
    @Column(name = "qylxr", length = 100)
    private String qylxr;
 
    @PropertyDef(label = "办公电话")
    @Column(name = "bgdh", length = 50)
    private String bgdh;
 
    @PropertyDef(label = "注册地址")
    @Column(name = "zcdz", length = 512)
    private String zcdz;
 
    @PropertyDef(label = "邮政编码")
    @Column(name = "yzbm", length = 6)
    private String yzbm;
 
    @PropertyDef(label = "行政区划代码")
    @Column(name = "xzqhdm", length = 6)
    private String xzqhdm;
 
    @PropertyDef(label = "收纳库个数")
    @Column(name = "snkgs")
    private Integer snkgs;
 
    @PropertyDef(label = "仓房数")
    @Column(name = "cfs")
    private Integer cfs;
 
    @PropertyDef(label = "油罐数")
    @Column(name = "ajs")
    private Integer ajs;
 
    @PropertyDef(label = "经度")
    @Column(name = "jd", precision = 20, scale = 6)
    private Double jd;
 
    @PropertyDef(label = "纬度")
    @Column(name = "wd", precision = 20, scale = 6)
    private Double wd;
 
    @PropertyDef(label = "单位状态")
    @Column(name = "dwzt",length = 1)
    private String dwzt;
 
    @PropertyDef(label = "操作标志")
    @Column(name = "czbz", length = 1)
    private String czbz;
 
    @PropertyDef(label = "最后更新时间")
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @Column(name = "zhgxsj")
    private Date zhgxsj;
 
    /*----------接口系统自定义字段----------*/
    @JSONField(serialize = false)
    @PropertyDef(label = "业务id")
    @Column(name = "bizId", length = 40)
    private String bizId;
 
    @JSONField(serialize = false)
    @PropertyDef(label = "库区代码")
    @Column(name = "kqdm", length = 21)
    private String kqdm;
 
    @JSONField(serialize = false)
    @PropertyDef(label = "同步时间", description = "从粮库系统同步到接口管理中心的时间")
    @Column(name = "syncTime")
    private Date syncTime;
 
}