feiyu02
2025-09-19 7cbe1610b87da19ed8a146a09b1117f92d9d3d98
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
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
package cn.flightfeather.supervision.domain.ds1.entity;
 
import com.fasterxml.jackson.annotation.JsonInclude;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
import javax.persistence.*;
 
@Table(name = "sm_t_scene_storage_yard")
@JsonInclude(JsonInclude.Include.NON_NULL)
@ApiModel("堆场信息")
public class SceneStorageYard implements BaseScene  {
    /**
     * 场景id,主键
     */
    @Id
    @Column(name = "S_GUID")
    @ApiModelProperty("场景id")
    private String sGuid;
 
    /**
     * 类型
     */
    @Column(name = "SY_Project_Type")
    @ApiModelProperty("类型")
    private String syProjectType;
 
    /**
     * 营运状态
     */
    @Column(name = "SY_Status")
    @ApiModelProperty("营运状态")
    private String syStatus;
 
    /**
     * 经营许可证
     */
    @Column(name = "SY_Business_Certificate")
    @ApiModelProperty("经营许可证")
    private String syBusinessCertificate;
 
    /**
     * 占地面积
     */
    @Column(name = "SY_Floor_Space")
    @ApiModelProperty("占地面积")
    private String syFloorSpace;
 
    /**
     * 规划面积
     */
    @Column(name = "SY_Planning_Area")
    @ApiModelProperty("规划面积")
    private String syPlanningArea;
 
    /**
     * 业主单位
     */
    @Column(name = "SY_Employer_Unit")
    @ApiModelProperty("业主单位")
    private String syEmployerUnit;
 
    /**
     * 业主单位联系人
     */
    @Column(name = "SY_Employer_Contacts")
    @ApiModelProperty("业主单位联系人")
    private String syEmployerContacts;
 
    /**
     * 业主单位联系人电话
     */
    @Column(name = "SY_Employer_Contacts_Tel")
    @ApiModelProperty("业主单位联系人电话")
    private String syEmployerContactsTel;
 
    /**
     * 租赁单位
     */
    @Column(name = "SY_Rent_Unit")
    @ApiModelProperty("租赁单位")
    private String syRentUnit;
 
    /**
     * 租赁单位联系人
     */
    @Column(name = "SY_Rent_Contacts")
    @ApiModelProperty("租赁单位联系人")
    private String syRentContacts;
 
    /**
     * 租赁单位联系人电话
     */
    @Column(name = "SY_Rent_Contacts_Tel")
    @ApiModelProperty("租赁单位联系人电话")
    private String syRentContactsTel;
 
    @Column(name = "SI_Extension1")
    private String siExtension1;
 
    @Column(name = "SI_Extension2")
    private String siExtension2;
 
    @Column(name = "SI_Extension3")
    private String siExtension3;
 
    @Column(name = "SI_Remark")
    private String siRemark;
 
    /**
     * 获取场景id,主键
     *
     * @return S_GUID - 场景id,主键
     */
    public String getsGuid() {
        return sGuid;
    }
 
    /**
     * 设置场景id,主键
     *
     * @param sGuid 场景id,主键
     */
    public void setsGuid(String sGuid) {
        this.sGuid = sGuid == null ? null : sGuid.trim();
    }
 
    /**
     * 获取类型
     *
     * @return SY_Project_Type - 类型
     */
    public String getSyProjectType() {
        return syProjectType;
    }
 
    /**
     * 设置类型
     *
     * @param syProjectType 类型
     */
    public void setSyProjectType(String syProjectType) {
        this.syProjectType = syProjectType == null ? null : syProjectType.trim();
    }
 
    /**
     * 获取营运状态
     *
     * @return SY_Status - 营运状态
     */
    public String getSyStatus() {
        return syStatus;
    }
 
    /**
     * 设置营运状态
     *
     * @param syStatus 营运状态
     */
    public void setSyStatus(String syStatus) {
        this.syStatus = syStatus == null ? null : syStatus.trim();
    }
 
    /**
     * 获取经营许可证
     *
     * @return SY_Business_Certificate - 经营许可证
     */
    public String getSyBusinessCertificate() {
        return syBusinessCertificate;
    }
 
    /**
     * 设置经营许可证
     *
     * @param syBusinessCertificate 经营许可证
     */
    public void setSyBusinessCertificate(String syBusinessCertificate) {
        this.syBusinessCertificate = syBusinessCertificate == null ? null : syBusinessCertificate.trim();
    }
 
    /**
     * 获取占地面积
     *
     * @return SY_Floor_Space - 占地面积
     */
    public String getSyFloorSpace() {
        return syFloorSpace;
    }
 
    /**
     * 设置占地面积
     *
     * @param syFloorSpace 占地面积
     */
    public void setSyFloorSpace(String syFloorSpace) {
        this.syFloorSpace = syFloorSpace == null ? null : syFloorSpace.trim();
    }
 
    /**
     * 获取规划面积
     *
     * @return SY_Planning_Area - 规划面积
     */
    public String getSyPlanningArea() {
        return syPlanningArea;
    }
 
    /**
     * 设置规划面积
     *
     * @param syPlanningArea 规划面积
     */
    public void setSyPlanningArea(String syPlanningArea) {
        this.syPlanningArea = syPlanningArea == null ? null : syPlanningArea.trim();
    }
 
    /**
     * 获取业主单位
     *
     * @return SY_Employer_Unit - 业主单位
     */
    public String getSyEmployerUnit() {
        return syEmployerUnit;
    }
 
    /**
     * 设置业主单位
     *
     * @param syEmployerUnit 业主单位
     */
    public void setSyEmployerUnit(String syEmployerUnit) {
        this.syEmployerUnit = syEmployerUnit == null ? null : syEmployerUnit.trim();
    }
 
    /**
     * 获取业主单位联系人
     *
     * @return SY_Employer_Contacts - 业主单位联系人
     */
    public String getSyEmployerContacts() {
        return syEmployerContacts;
    }
 
    /**
     * 设置业主单位联系人
     *
     * @param syEmployerContacts 业主单位联系人
     */
    public void setSyEmployerContacts(String syEmployerContacts) {
        this.syEmployerContacts = syEmployerContacts == null ? null : syEmployerContacts.trim();
    }
 
    /**
     * 获取业主单位联系人电话
     *
     * @return SY_Employer_Contacts_Tel - 业主单位联系人电话
     */
    public String getSyEmployerContactsTel() {
        return syEmployerContactsTel;
    }
 
    /**
     * 设置业主单位联系人电话
     *
     * @param syEmployerContactsTel 业主单位联系人电话
     */
    public void setSyEmployerContactsTel(String syEmployerContactsTel) {
        this.syEmployerContactsTel = syEmployerContactsTel == null ? null : syEmployerContactsTel.trim();
    }
 
    /**
     * 获取租赁单位
     *
     * @return SY_Rent_Unit - 租赁单位
     */
    public String getSyRentUnit() {
        return syRentUnit;
    }
 
    /**
     * 设置租赁单位
     *
     * @param syRentUnit 租赁单位
     */
    public void setSyRentUnit(String syRentUnit) {
        this.syRentUnit = syRentUnit == null ? null : syRentUnit.trim();
    }
 
    /**
     * 获取租赁单位联系人
     *
     * @return SY_Rent_Contacts - 租赁单位联系人
     */
    public String getSyRentContacts() {
        return syRentContacts;
    }
 
    /**
     * 设置租赁单位联系人
     *
     * @param syRentContacts 租赁单位联系人
     */
    public void setSyRentContacts(String syRentContacts) {
        this.syRentContacts = syRentContacts == null ? null : syRentContacts.trim();
    }
 
    /**
     * 获取租赁单位联系人电话
     *
     * @return SY_Rent_Contacts_Tel - 租赁单位联系人电话
     */
    public String getSyRentContactsTel() {
        return syRentContactsTel;
    }
 
    /**
     * 设置租赁单位联系人电话
     *
     * @param syRentContactsTel 租赁单位联系人电话
     */
    public void setSyRentContactsTel(String syRentContactsTel) {
        this.syRentContactsTel = syRentContactsTel == null ? null : syRentContactsTel.trim();
    }
 
    /**
     * @return SI_Extension1
     */
    public String getSiExtension1() {
        return siExtension1;
    }
 
    /**
     * @param siExtension1
     */
    public void setSiExtension1(String siExtension1) {
        this.siExtension1 = siExtension1 == null ? null : siExtension1.trim();
    }
 
    /**
     * @return SI_Extension2
     */
    public String getSiExtension2() {
        return siExtension2;
    }
 
    /**
     * @param siExtension2
     */
    public void setSiExtension2(String siExtension2) {
        this.siExtension2 = siExtension2 == null ? null : siExtension2.trim();
    }
 
    /**
     * @return SI_Extension3
     */
    public String getSiExtension3() {
        return siExtension3;
    }
 
    /**
     * @param siExtension3
     */
    public void setSiExtension3(String siExtension3) {
        this.siExtension3 = siExtension3 == null ? null : siExtension3.trim();
    }
 
    /**
     * @return SI_Remark
     */
    public String getSiRemark() {
        return siRemark;
    }
 
    /**
     * @param siRemark
     */
    public void setSiRemark(String siRemark) {
        this.siRemark = siRemark == null ? null : siRemark.trim();
    }
}