北京经济技术开发区经开区虚拟城市项目-【后端】-服务,Poi,企业,地块等定制接口
13693261870
2023-10-05 3065396433aeb5f03d3164780be7398dae21f9f7
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
package com.smartearth.poiexcel.entity;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * 企业实体类
 * @author WWW
 * @date 2023-10-05
 */
public class EntEntity implements Serializable {
    private static final long serialVersionUID = -8624235184539814990L;
 
    private Long id;
 
    private String enterprise_id;
 
    private String entName;
 
    private String fingerId;
 
    private Integer regCapital;
 
    private Integer regCapitalCNY;
 
    private String legalPerson;
 
    private String address;
 
    private Date buildDate;
 
    private String entType;
 
    private String industryCategory;
 
    private String businessScope;
 
    private String qylabel;
 
    private String creator;
 
    private Double x;
 
    private Double y;
 
    private String enterprise_area;
 
    public EntEntity() {
    }
 
    public EntEntity(String enterprise_id, String entName, String fingerId, Integer regCapital, Integer regCapitalCNY, String legalPerson, String address, Date buildDate, String entType, String industryCategory, String businessScope, String qylabel, String creator, Double x, Double y, String enterprise_area) {
        this.enterprise_id = enterprise_id;
        this.entName = entName;
        this.fingerId = fingerId;
        this.regCapital = regCapital;
        this.regCapitalCNY = regCapitalCNY;
        this.legalPerson = legalPerson;
        this.address = address;
        this.buildDate = buildDate;
        this.entType = entType;
        this.industryCategory = industryCategory;
        this.businessScope = businessScope;
        this.qylabel = qylabel;
        this.creator = creator;
        this.x = x;
        this.y = y;
        this.enterprise_area = enterprise_area;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getEnterprise_id() {
        return enterprise_id;
    }
 
    public void setEnterprise_id(String enterprise_id) {
        this.enterprise_id = enterprise_id;
    }
 
    public String getEntName() {
        return entName;
    }
 
    public void setEntName(String entName) {
        this.entName = entName;
    }
 
    public String getFingerId() {
        return fingerId;
    }
 
    public void setFingerId(String fingerId) {
        this.fingerId = fingerId;
    }
 
    public Integer getRegCapital() {
        return regCapital;
    }
 
    public void setRegCapital(Integer regCapital) {
        this.regCapital = regCapital;
    }
 
    public Integer getRegCapitalCNY() {
        return regCapitalCNY;
    }
 
    public void setRegCapitalCNY(Integer regCapitalCNY) {
        this.regCapitalCNY = regCapitalCNY;
    }
 
    public String getLegalPerson() {
        return legalPerson;
    }
 
    public void setLegalPerson(String legalPerson) {
        this.legalPerson = legalPerson;
    }
 
    public String getAddress() {
        return address;
    }
 
    public void setAddress(String address) {
        this.address = address;
    }
 
    public Date getBuildDate() {
        return buildDate;
    }
 
    public void setBuildDate(Date buildDate) {
        this.buildDate = buildDate;
    }
 
    public String getEntType() {
        return entType;
    }
 
    public void setEntType(String entType) {
        this.entType = entType;
    }
 
    public String getIndustryCategory() {
        return industryCategory;
    }
 
    public void setIndustryCategory(String industryCategory) {
        this.industryCategory = industryCategory;
    }
 
    public String getBusinessScope() {
        return businessScope;
    }
 
    public void setBusinessScope(String businessScope) {
        this.businessScope = businessScope;
    }
 
    public String getQylabel() {
        return qylabel;
    }
 
    public void setQylabel(String qylabel) {
        this.qylabel = qylabel;
    }
 
    public String getCreator() {
        return creator;
    }
 
    public void setCreator(String creator) {
        this.creator = creator;
    }
 
    public Double getX() {
        return x;
    }
 
    public void setX(Double x) {
        this.x = x;
    }
 
    public Double getY() {
        return y;
    }
 
    public void setY(Double y) {
        this.y = y;
    }
 
    public String getEnterprise_area() {
        return enterprise_area;
    }
 
    public void setEnterprise_area(String enterprise_area) {
        this.enterprise_area = enterprise_area;
    }
}