地质所 沉降监测网建设项目
zmk
2024-05-15 9e3afc6d0fa514f986d3fea40fa23124e6fb5070
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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
package com.javaweb.geotdp.vo;
 
import java.util.Date;
 
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.Pattern;
import javax.validation.constraints.Size;
 
import org.hibernate.validator.constraints.Range;
import org.springframework.format.annotation.DateTimeFormat;
 
/**
 * 企业类
 */
public class CompanyVo {
 
 
    //@NotBlank(message="时间参数不能为空")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date addTime;// 添加时间(必填)
    
    @NotBlank(message="身份证附件不能为空")
    private String cardAnnex ; // 身份证附件(网络图片地址)(必填)
    
    @NotBlank(message="附件背面不能为空")
    private String cardBackAnnex ;//附件背面(网络图片地址)(必填)
 
    @Range(min =1 , max =1,message="城市编号应该设置为1")
    private Integer city; // 城市(北京默认为1)(必填)
    private String code ; // 企业代码
    
    @NotBlank(message="信用代码附件不能为空")
    private String creditAnnex ;// 信用代码附件(网络图片地址)(必填)
    
    
    @NotBlank(message="信用代码不能为空")
    private String creditCode;// 信用代码(必填)
 
 
    /**
     *     区县(1-东城区、2-西城区、5-朝阳区、6-丰台区、7-石景山
     *     区、8-海淀区、9-门头沟区、10-房山区、11-通州区、12-顺义
     *     区、13-昌平区、14-大兴区、15-怀柔区、16-平谷区、17-密云
     *     县、18-延庆县、99-外埠)(必填)
     */
    
    @Range(min =1 , max =99,message="地区编号不合法")
    private Integer district ;
    
    @NotBlank(message="企业名称不能为空")
    private String fullName;// 企业名称(必填)
    
    @Size(min=18,max=18,message="身份证不能为空,长度为18位")
    private String idCard ;// 身份证(必填)
 
    private String ids ;// 主键(新建时为空,更新时必填)
    
    @NotBlank(message="法人不能为空")
    private String legalPerson ;// 法人(必填)
    
    @NotBlank(message="法人电话不能为空")
    private String legalPersonPhone ;// 法人电话(必填)
    
    
    @NotBlank(message="委托书附件不能为空")
    private String powerOfAttorneyAnnex ;// 委托书附件(网络图片地址)(必填)
    
    @Range(min =1 , max =1,message="省份编码设置为1")
    private Integer province ;//  省份(北京默认为1)(必填)
 
    private String  regAddress ;// 注册地址
    
    @NotBlank(message="平台密钥不能为空")
    private String secretKey;//  平台密钥(必填)
 
    private String nature ;// 企业性质
 
    private String position ;// 职务
 
    private String  certificationsCode ;// 资质证书编号
 
    private String certificationsAnnex ;// 资质证书附件(网络图片地址)
 
    private String description ;// 企业描述
 
    private String certificationsCode2 ;// 资质证书编号2
 
    private String certificationsAnnex2 ;// 资质证书附件2(网络图片地址)
 
    private String userName ;// 联系人
 
    private String userPhone ;// 联系人联系方式
 
    private String category ;// 资质类别(1-一类、2-二类)
    
    private String datasource;//数据来源
    
 
 
 
    public String getDatasource() {
        return datasource;
    }
 
    public void setDatasource(String datasource) {
        this.datasource = datasource;
    }
 
    public Date getAddTime() {
        return addTime;
    }
 
    public void setAddTime(Date addTime) {
        this.addTime = addTime;
    }
 
    public String getCardAnnex() {
        return cardAnnex;
    }
 
    public void setCardAnnex(String cardAnnex) {
        this.cardAnnex = cardAnnex;
    }
 
    public String getCardBackAnnex() {
        return cardBackAnnex;
    }
 
    public void setCardBackAnnex(String cardBackAnnex) {
        this.cardBackAnnex = cardBackAnnex;
    }
 
    public Integer getCity() {
        return city;
    }
 
    public void setCity(Integer city) {
        this.city = city;
    }
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    public String getCreditAnnex() {
        return creditAnnex;
    }
 
    public void setCreditAnnex(String creditAnnex) {
        this.creditAnnex = creditAnnex;
    }
 
    public String getCreditCode() {
        return creditCode;
    }
 
    public void setCreditCode(String creditCode) {
        this.creditCode = creditCode;
    }
 
    public Integer getDistrict() {
        return district;
    }
 
    public void setDistrict(Integer district) {
        this.district = district;
    }
 
    public String getFullName() {
        return fullName;
    }
 
    public void setFullName(String fullName) {
        this.fullName = fullName;
    }
 
    public String getIdCard() {
        return idCard;
    }
 
    public void setIdCard(String idCard) {
        this.idCard = idCard;
    }
 
    public String getIds() {
        return ids;
    }
 
    public void setIds(String ids) {
        this.ids = ids;
    }
 
    public String getLegalPerson() {
        return legalPerson;
    }
 
    public void setLegalPerson(String legalPerson) {
        this.legalPerson = legalPerson;
    }
 
    public String getLegalPersonPhone() {
        return legalPersonPhone;
    }
 
    public void setLegalPersonPhone(String legalPersonPhone) {
        this.legalPersonPhone = legalPersonPhone;
    }
 
    public String getPowerOfAttorneyAnnex() {
        return powerOfAttorneyAnnex;
    }
 
    public void setPowerOfAttorneyAnnex(String powerOfAttorneyAnnex) {
        this.powerOfAttorneyAnnex = powerOfAttorneyAnnex;
    }
 
    public Integer getProvince() {
        return province;
    }
 
    public void setProvince(Integer province) {
        this.province = province;
    }
 
    public String getRegAddress() {
        return regAddress;
    }
 
    public void setRegAddress(String regAddress) {
        this.regAddress = regAddress;
    }
 
    public String getSecretKey() {
        return secretKey;
    }
 
    public void setSecretKey(String secretKey) {
        this.secretKey = secretKey;
    }
 
    public String getNature() {
        return nature;
    }
 
    public void setNature(String nature) {
        this.nature = nature;
    }
 
    public String getPosition() {
        return position;
    }
 
    public void setPosition(String position) {
        this.position = position;
    }
 
    public String getCertificationsCode() {
        return certificationsCode;
    }
 
    public void setCertificationsCode(String certificationsCode) {
        this.certificationsCode = certificationsCode;
    }
 
    public String getCertificationsAnnex() {
        return certificationsAnnex;
    }
 
    public void setCertificationsAnnex(String certificationsAnnex) {
        this.certificationsAnnex = certificationsAnnex;
    }
 
    public String getDescription() {
        return description;
    }
 
    public void setDescription(String description) {
        this.description = description;
    }
 
    public String getCertificationsCode2() {
        return certificationsCode2;
    }
 
    public void setCertificationsCode2(String certificationsCode2) {
        this.certificationsCode2 = certificationsCode2;
    }
 
    public String getCertificationsAnnex2() {
        return certificationsAnnex2;
    }
 
    public void setCertificationsAnnex2(String certificationsAnnex2) {
        this.certificationsAnnex2 = certificationsAnnex2;
    }
 
    public String getUserName() {
        return userName;
    }
 
    public void setUserName(String userName) {
        this.userName = userName;
    }
 
    public String getUserPhone() {
        return userPhone;
    }
 
    public void setUserPhone(String userPhone) {
        this.userPhone = userPhone;
    }
 
    public String getCategory() {
        return category;
    }
 
    public void setCategory(String category) {
        this.category = category;
    }
}