feiyu02
2024-01-09 c1becf4cbd2e99601ce011c14b8742427249cfb4
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
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
package cn.flightfeather.supervision.domain.ds1.entity;
 
import java.util.Date;
import javax.persistence.*;
 
@Table(name = "sm_t_night_construction")
public class NightConstruction {
    @Id
    @Column(name = "NC_Id")
    private Integer ncId;
 
    /**
     * 夜间施工编号
     */
    @Column(name = "NC_Num")
    private String ncNum;
 
    /**
     * 项目名称
     */
    @Column(name = "NC_Item_Name")
    private String ncItemName;
 
    /**
     * 项目单位
     */
    @Column(name = "NC_Item_Unit")
    private String ncItemUnit;
 
    @Column(name = "NC_Province_Code")
    private String ncProvinceCode;
 
    @Column(name = "NC_Province_Name")
    private String ncProvinceName;
 
    @Column(name = "NC_City_Code")
    private String ncCityCode;
 
    @Column(name = "NC_City_Name")
    private String ncCityName;
 
    @Column(name = "NC_District_Code")
    private String ncDistrictCode;
 
    @Column(name = "NC_District_Name")
    private String ncDistrictName;
 
    /**
     * 施工单位
     */
    @Column(name = "NC_Construction_Unit")
    private String ncConstructionUnit;
 
    /**
     * 工地负责人
     */
    @Column(name = "NC_Person")
    private String ncPerson;
 
    /**
     * 施工内容
     */
    @Column(name = "NC_Apply_Content")
    private String ncApplyContent;
 
    /**
     * 夜间施工开始时间
     */
    @Column(name = "NC_Start_Date")
    private Date ncStartDate;
 
    /**
     * 夜间施工结束时间
     */
    @Column(name = "NC_End_Date")
    private Date ncEndDate;
 
    /**
     * 文件名称
     */
    @Column(name = "NC_File_Name")
    private String ncFileName;
 
    /**
     * 创建时间
     */
    @Column(name = "NC_Create_Time")
    private Date ncCreateTime;
 
    /**
     * 文件下载路径
     */
    @Column(name = "NC_Url")
    private String ncUrl;
 
    @Column(name = "NC_User_Id")
    private String ncUserId;
 
    @Column(name = "NC_Scene_Id")
    private String ncSceneId;
 
    /**
     * 阅读状态
     */
    @Column(name = "NC_Read")
    private Boolean ncRead;
 
    /**
     * @return NC_Id
     */
    public Integer getNcId() {
        return ncId;
    }
 
    /**
     * @param ncId
     */
    public void setNcId(Integer ncId) {
        this.ncId = ncId;
    }
 
    /**
     * 获取夜间施工编号
     *
     * @return NC_Num - 夜间施工编号
     */
    public String getNcNum() {
        return ncNum;
    }
 
    /**
     * 设置夜间施工编号
     *
     * @param ncNum 夜间施工编号
     */
    public void setNcNum(String ncNum) {
        this.ncNum = ncNum == null ? null : ncNum.trim();
    }
 
    /**
     * 获取项目名称
     *
     * @return NC_Item_Name - 项目名称
     */
    public String getNcItemName() {
        return ncItemName;
    }
 
    /**
     * 设置项目名称
     *
     * @param ncItemName 项目名称
     */
    public void setNcItemName(String ncItemName) {
        this.ncItemName = ncItemName == null ? null : ncItemName.trim();
    }
 
    /**
     * 获取项目单位
     *
     * @return NC_Item_Unit - 项目单位
     */
    public String getNcItemUnit() {
        return ncItemUnit;
    }
 
    /**
     * 设置项目单位
     *
     * @param ncItemUnit 项目单位
     */
    public void setNcItemUnit(String ncItemUnit) {
        this.ncItemUnit = ncItemUnit == null ? null : ncItemUnit.trim();
    }
 
    /**
     * @return NC_Province_Code
     */
    public String getNcProvinceCode() {
        return ncProvinceCode;
    }
 
    /**
     * @param ncProvinceCode
     */
    public void setNcProvinceCode(String ncProvinceCode) {
        this.ncProvinceCode = ncProvinceCode == null ? null : ncProvinceCode.trim();
    }
 
    /**
     * @return NC_Province_Name
     */
    public String getNcProvinceName() {
        return ncProvinceName;
    }
 
    /**
     * @param ncProvinceName
     */
    public void setNcProvinceName(String ncProvinceName) {
        this.ncProvinceName = ncProvinceName == null ? null : ncProvinceName.trim();
    }
 
    /**
     * @return NC_City_Code
     */
    public String getNcCityCode() {
        return ncCityCode;
    }
 
    /**
     * @param ncCityCode
     */
    public void setNcCityCode(String ncCityCode) {
        this.ncCityCode = ncCityCode == null ? null : ncCityCode.trim();
    }
 
    /**
     * @return NC_City_Name
     */
    public String getNcCityName() {
        return ncCityName;
    }
 
    /**
     * @param ncCityName
     */
    public void setNcCityName(String ncCityName) {
        this.ncCityName = ncCityName == null ? null : ncCityName.trim();
    }
 
    /**
     * @return NC_District_Code
     */
    public String getNcDistrictCode() {
        return ncDistrictCode;
    }
 
    /**
     * @param ncDistrictCode
     */
    public void setNcDistrictCode(String ncDistrictCode) {
        this.ncDistrictCode = ncDistrictCode == null ? null : ncDistrictCode.trim();
    }
 
    /**
     * @return NC_District_Name
     */
    public String getNcDistrictName() {
        return ncDistrictName;
    }
 
    /**
     * @param ncDistrictName
     */
    public void setNcDistrictName(String ncDistrictName) {
        this.ncDistrictName = ncDistrictName == null ? null : ncDistrictName.trim();
    }
 
    /**
     * 获取施工单位
     *
     * @return NC_Construction_Unit - 施工单位
     */
    public String getNcConstructionUnit() {
        return ncConstructionUnit;
    }
 
    /**
     * 设置施工单位
     *
     * @param ncConstructionUnit 施工单位
     */
    public void setNcConstructionUnit(String ncConstructionUnit) {
        this.ncConstructionUnit = ncConstructionUnit == null ? null : ncConstructionUnit.trim();
    }
 
    /**
     * 获取工地负责人
     *
     * @return NC_Person - 工地负责人
     */
    public String getNcPerson() {
        return ncPerson;
    }
 
    /**
     * 设置工地负责人
     *
     * @param ncPerson 工地负责人
     */
    public void setNcPerson(String ncPerson) {
        this.ncPerson = ncPerson == null ? null : ncPerson.trim();
    }
 
    /**
     * 获取施工内容
     *
     * @return NC_Apply_Content - 施工内容
     */
    public String getNcApplyContent() {
        return ncApplyContent;
    }
 
    /**
     * 设置施工内容
     *
     * @param ncApplyContent 施工内容
     */
    public void setNcApplyContent(String ncApplyContent) {
        this.ncApplyContent = ncApplyContent == null ? null : ncApplyContent.trim();
    }
 
    /**
     * 获取夜间施工开始时间
     *
     * @return NC_Start_Date - 夜间施工开始时间
     */
    public Date getNcStartDate() {
        return ncStartDate;
    }
 
    /**
     * 设置夜间施工开始时间
     *
     * @param ncStartDate 夜间施工开始时间
     */
    public void setNcStartDate(Date ncStartDate) {
        this.ncStartDate = ncStartDate;
    }
 
    /**
     * 获取夜间施工结束时间
     *
     * @return NC_End_Date - 夜间施工结束时间
     */
    public Date getNcEndDate() {
        return ncEndDate;
    }
 
    /**
     * 设置夜间施工结束时间
     *
     * @param ncEndDate 夜间施工结束时间
     */
    public void setNcEndDate(Date ncEndDate) {
        this.ncEndDate = ncEndDate;
    }
 
    /**
     * 获取文件名称
     *
     * @return NC_File_Name - 文件名称
     */
    public String getNcFileName() {
        return ncFileName;
    }
 
    /**
     * 设置文件名称
     *
     * @param ncFileName 文件名称
     */
    public void setNcFileName(String ncFileName) {
        this.ncFileName = ncFileName == null ? null : ncFileName.trim();
    }
 
    /**
     * 获取创建时间
     *
     * @return NC_Create_Time - 创建时间
     */
    public Date getNcCreateTime() {
        return ncCreateTime;
    }
 
    /**
     * 设置创建时间
     *
     * @param ncCreateTime 创建时间
     */
    public void setNcCreateTime(Date ncCreateTime) {
        this.ncCreateTime = ncCreateTime;
    }
 
    /**
     * 获取文件下载路径
     *
     * @return NC_Url - 文件下载路径
     */
    public String getNcUrl() {
        return ncUrl;
    }
 
    /**
     * 设置文件下载路径
     *
     * @param ncUrl 文件下载路径
     */
    public void setNcUrl(String ncUrl) {
        this.ncUrl = ncUrl == null ? null : ncUrl.trim();
    }
 
    /**
     * @return NC_User_Id
     */
    public String getNcUserId() {
        return ncUserId;
    }
 
    /**
     * @param ncUserId
     */
    public void setNcUserId(String ncUserId) {
        this.ncUserId = ncUserId == null ? null : ncUserId.trim();
    }
 
    /**
     * @return NC_Scene_Id
     */
    public String getNcSceneId() {
        return ncSceneId;
    }
 
    /**
     * @param ncSceneId
     */
    public void setNcSceneId(String ncSceneId) {
        this.ncSceneId = ncSceneId == null ? null : ncSceneId.trim();
    }
 
    /**
     * 获取阅读状态
     *
     * @return NC_Read - 阅读状态
     */
    public Boolean getNcRead() {
        return ncRead;
    }
 
    /**
     * 设置阅读状态
     *
     * @param ncRead 阅读状态
     */
    public void setNcRead(Boolean ncRead) {
        this.ncRead = ncRead;
    }
}