Administrator
2023-06-19 49588f5a462ae7425e7eb030438a35fd80c246fa
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
package com.gk.firework.Domain.Vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.gk.firework.Domain.Utils.StringUtils;
 
import java.math.BigDecimal;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.List;
import java.util.Date;
import java.util.stream.Collectors;
 
public class EnterpriseExportVo {
 
    private String enterprisename;
 
    private String enterprisenumber;
 
    private String safetysupervision;
 
    private String securitysupervisory;
 
    private String level;
 
    private String ismajorhazard;
 
    private String validstarttime;
 
    private String validendtime;
 
    private String province;
 
    private String city;
 
    private String district;
 
    private String street;
 
    private String committee;
 
    private String valid;
 
    private String location;
 
    private String validtime;
 
    private String insurancecompany;
 
    private String insureendtime;
 
    private String insurestarttime;
 
    private String ispaysafetyinsurance;
 
    private String insurancecontractnumber;
 
    private String insureamount;
 
    private String personnumber;
 
    private String employeenumber;
 
 
 
 
 
    public String getEnterprisename() {
        return enterprisename;
    }
 
    public void setEnterprisename(String enterprisename) {
        this.enterprisename = enterprisename;
    }
 
    public String getEnterprisenumber() {
        return enterprisenumber;
    }
 
    public void setEnterprisenumber(String enterprisenumber) {
        this.enterprisenumber = enterprisenumber;
    }
 
    public String getSafetysupervision() {
        return safetysupervision;
    }
 
    public void setSafetysupervision(String safetysupervision) {
        this.safetysupervision = safetysupervision;
    }
 
    public String getSecuritysupervisory() {
        return securitysupervisory;
    }
 
    public void setSecuritysupervisory(String securitysupervisory) {
        this.securitysupervisory = securitysupervisory;
    }
 
    public String getLevel() {
        return level;
    }
 
    public void setLevel(String level) {
        this.level = level;
    }
 
    public String getIsmajorhazard() {
        return ismajorhazard;
    }
 
    public void setIsmajorhazard(String ismajorhazard) {
        this.ismajorhazard = ismajorhazard;
    }
 
    public String getValidstarttime() {
        return validstarttime;
    }
 
    public void setValidstarttime(String validstarttime) {
        this.validstarttime = validstarttime;
    }
 
    public String getValidendtime() {
        return validendtime;
    }
 
    public void setValidendtime(String validendtime) {
        this.validendtime = validendtime;
    }
 
    public String getProvince() {
        return province;
    }
 
    public void setProvince(String province) {
        this.province = province;
    }
 
    public String getCity() {
        return city;
    }
 
    public void setCity(String city) {
        this.city = city;
    }
 
    public String getDistrict() {
        return district;
    }
 
    public void setDistrict(String district) {
        this.district = district;
    }
 
    public String getStreet() {
        return street;
    }
 
    public void setStreet(String street) {
        this.street = street;
    }
 
    public String getCommittee() {
        return committee;
    }
 
    public void setCommittee(String committee) {
        this.committee = committee;
    }
 
    public String getValid() {
        return valid;
    }
 
    public void setValid(String valid) {
        this.valid = valid;
    }
 
    public String getLocation() {
 
        return (StringUtils.isBlank(province)?"":province)+
                (StringUtils.isBlank(city)?"":"-"+city)+
                (StringUtils.isBlank(district)?"":"-"+district)+
                (StringUtils.isBlank(street)?"":"-"+street)+
                (StringUtils.isBlank(committee)?"":"-"+committee);
    }
 
    public void setLocation(String location) {
        this.location = location;
    }
 
    public String getValidtime() {
 
        if (validstarttime == null && validendtime == null) {
            return  "";
        }
        if (validstarttime == null ) {
            return validendtime + "";
        }
        if (validendtime == null) {
            return validstarttime + "";
        }
 
        return validstarttime + " - " + validendtime;
    }
 
    public void setValidtime(String validtime) {
        this.validtime = validtime;
    }
 
    public String getInsurancecompany() {
        return insurancecompany;
    }
 
    public void setInsurancecompany(String insurancecompany) {
        this.insurancecompany = insurancecompany;
    }
 
    public String getInsureendtime() {
        return insureendtime;
    }
 
    public void setInsureendtime(String insureendtime) {
        this.insureendtime = insureendtime;
    }
 
    public String getInsurestarttime() {
        return insurestarttime;
    }
 
    public void setInsurestarttime(String insurestarttime) {
        this.insurestarttime = insurestarttime;
    }
 
    public String getIspaysafetyinsurance() {
        return ispaysafetyinsurance;
    }
 
    public void setIspaysafetyinsurance(String ispaysafetyinsurance) {
        this.ispaysafetyinsurance = ispaysafetyinsurance;
    }
 
    public String getInsurancecontractnumber() {
        return insurancecontractnumber;
    }
 
    public void setInsurancecontractnumber(String insurancecontractnumber) {
        this.insurancecontractnumber = insurancecontractnumber;
    }
 
    public String getInsureamount() {
        return insureamount;
    }
 
    public void setInsureamount(String insureamount) {
        this.insureamount = insureamount;
    }
 
 
    public String getPersonnumber() {
        return personnumber;
    }
 
    public void setPersonnumber(String personnumber) {
        this.personnumber = personnumber;
    }
 
    public String getEmployeenumber() {
        return employeenumber;
    }
 
    public void setEmployeenumber(String employeenumber) {
        this.employeenumber = employeenumber;
    }
}