地质所 沉降监测网建设项目
chenhuan
2024-05-16 0fdd42e318f51f9e3c6581473416af1cca69877f
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
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
package com.javaweb.platform.domain;
 
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.javaweb.common.annotation.Excel;
import com.javaweb.common.core.domain.BaseEntity;
import java.util.Date;
 
/**
 * 钻孔信息对象 js_hole_info
 * 
 * @author ruoyi
 * @date 2022-03-22
 */
public class HoleInfo extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 主键 */
    private String id;
 
    /** 项目编号 */
    @Excel(name = "项目编号")
    private String projNo;
 
    /** 钻孔编号 */
    @Excel(name = "钻孔编号")
    private String holeNo;
 
    /** null */
    @Excel(name = "null")
    private String officeCode;
 
    /** 孔口标高 */
    @Excel(name = "孔口标高")
    private Long holeElev;
 
    /** 孔深 */
    @Excel(name = "孔深")
    private Double holeDepth;
 
    /** 钻孔移位 */
    @Excel(name = "钻孔移位")
    private String holeShift;
 
    /** 钻孔类型 */
    @Excel(name = "钻孔类型")
    private String holeType;
 
    /** 钻机型号 */
    @Excel(name = "钻机型号")
    private String rigModel;
 
    /** 开孔直径 */
    @Excel(name = "开孔直径")
    private Double holeDiam;
 
    /** 终孔直径 */
    @Excel(name = "终孔直径")
    private Double endDiam;
 
    /** 开孔日期 */
    @Excel(name = "开孔日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date startDate;
 
    /** 终孔日期 */
    @Excel(name = "终孔日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date endDate;
 
    /** 冠号 */
    @Excel(name = "冠号")
    private String crownNo;
 
    /** 桩与里程 */
    @Excel(name = "桩与里程")
    private Double mileageMile;
 
    /** 钻孔高差 */
    @Excel(name = "钻孔高差")
    private Double holeHeightDif;
 
    /** 路面标高 */
    @Excel(name = "路面标高")
    private Double roadLevel;
 
    /** 探槽深度 */
    @Excel(name = "探槽深度")
    private Double grooveDepth;
 
    /** 探槽长度 */
    @Excel(name = "探槽长度")
    private Double grooveLenth;
 
    /** 探槽宽度 */
    @Excel(name = "探槽宽度")
    private Double grooveWidth;
 
    /** 探井深度 */
    @Excel(name = "探井深度")
    private Double manholeDepth;
 
    /** 钻探机具 */
    @Excel(name = "钻探机具")
    private String drillRig;
 
    /** 劳务单位 */
    @Excel(name = "劳务单位")
    private String drillComp;
 
    /** 经度 */
    @Excel(name = "经度")
    private Double longitude;
 
    /** 纬度 */
    @Excel(name = "纬度")
    private Double latitude;
 
    /** 定位时间 */
    @Excel(name = "定位时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date locationTime;
 
    /** 备注信息 */
    @Excel(name = "备注信息")
    private String remarkMsg;
 
    /** 下达任务 */
    @Excel(name = "下达任务")
    private String task;
 
    /** 任务备注 */
    @Excel(name = "任务备注")
    private String taskRemark;
 
    /** 钻孔状态 */
    @Excel(name = "钻孔状态")
    private String state;
 
    /** 外业进度 完成進度 */
    @Excel(name = "外业进度 完成進度")
    private String progress;
 
    /** 描述员签字 */
    @Excel(name = "描述员签字")
    private String descriptorSign;
 
    /** 司钻员签字 */
    @Excel(name = "司钻员签字")
    private String drillerSign;
 
    /** 量尺员签字 */
    @Excel(name = "量尺员签字")
    private String measurerSign;
 
    /** 互校员签字 */
    @Excel(name = "互校员签字")
    private String correctorSign;
 
    /** 检查员签字 */
    @Excel(name = "检查员签字")
    private String procuratorSign;
 
    /** 描述员 */
    @Excel(name = "描述员")
    private String descriptor;
 
    /** 描述员编号 */
    @Excel(name = "描述员编号")
    private String descriptorNo;
 
    /** 司钻员 */
    @Excel(name = "司钻员")
    private String driller;
 
    /** 司钻员编号 */
    @Excel(name = "司钻员编号")
    private String drillerNo;
 
    /** 钻孔图片 */
    @Excel(name = "钻孔图片")
    private String drillImg;
 
    /** 钻孔视频 */
    @Excel(name = "钻孔视频")
    private String drillVideo;
 
    /** 删除标记,0正常,1删除 */
    private String delFlag;
 
    /** 钻机编号 */
    @Excel(name = "钻机编号")
    private String drillrigno;
 
    /** null */
    @Excel(name = "null")
    private String ids;
 
    /** null */
    @Excel(name = "null")
    private String isHistory;
 
    public void setId(String id) 
    {
        this.id = id;
    }
 
    public String getId() 
    {
        return id;
    }
    public void setProjNo(String projNo) 
    {
        this.projNo = projNo;
    }
 
    public String getProjNo() 
    {
        return projNo;
    }
    public void setHoleNo(String holeNo) 
    {
        this.holeNo = holeNo;
    }
 
    public String getHoleNo() 
    {
        return holeNo;
    }
    public void setOfficeCode(String officeCode) 
    {
        this.officeCode = officeCode;
    }
 
    public String getOfficeCode() 
    {
        return officeCode;
    }
    public void setHoleElev(Long holeElev) 
    {
        this.holeElev = holeElev;
    }
 
    public Long getHoleElev() 
    {
        return holeElev;
    }
    public void setHoleDepth(Double holeDepth) 
    {
        this.holeDepth = holeDepth;
    }
 
    public Double getHoleDepth() 
    {
        return holeDepth;
    }
    public void setHoleShift(String holeShift) 
    {
        this.holeShift = holeShift;
    }
 
    public String getHoleShift() 
    {
        return holeShift;
    }
    public void setHoleType(String holeType) 
    {
        this.holeType = holeType;
    }
 
    public String getHoleType() 
    {
        return holeType;
    }
    public void setRigModel(String rigModel) 
    {
        this.rigModel = rigModel;
    }
 
    public String getRigModel() 
    {
        return rigModel;
    }
    public void setHoleDiam(Double holeDiam) 
    {
        this.holeDiam = holeDiam;
    }
 
    public Double getHoleDiam() 
    {
        return holeDiam;
    }
    public void setEndDiam(Double endDiam) 
    {
        this.endDiam = endDiam;
    }
 
    public Double getEndDiam() 
    {
        return endDiam;
    }
    public void setStartDate(Date startDate) 
    {
        this.startDate = startDate;
    }
 
    public Date getStartDate() 
    {
        return startDate;
    }
    public void setEndDate(Date endDate) 
    {
        this.endDate = endDate;
    }
 
    public Date getEndDate() 
    {
        return endDate;
    }
    public void setCrownNo(String crownNo) 
    {
        this.crownNo = crownNo;
    }
 
    public String getCrownNo() 
    {
        return crownNo;
    }
    public void setMileageMile(Double mileageMile) 
    {
        this.mileageMile = mileageMile;
    }
 
    public Double getMileageMile() 
    {
        return mileageMile;
    }
    public void setHoleHeightDif(Double holeHeightDif) 
    {
        this.holeHeightDif = holeHeightDif;
    }
 
    public Double getHoleHeightDif() 
    {
        return holeHeightDif;
    }
    public void setRoadLevel(Double roadLevel) 
    {
        this.roadLevel = roadLevel;
    }
 
    public Double getRoadLevel() 
    {
        return roadLevel;
    }
    public void setGrooveDepth(Double grooveDepth) 
    {
        this.grooveDepth = grooveDepth;
    }
 
    public Double getGrooveDepth() 
    {
        return grooveDepth;
    }
    public void setGrooveLenth(Double grooveLenth) 
    {
        this.grooveLenth = grooveLenth;
    }
 
    public Double getGrooveLenth() 
    {
        return grooveLenth;
    }
    public void setGrooveWidth(Double grooveWidth) 
    {
        this.grooveWidth = grooveWidth;
    }
 
    public Double getGrooveWidth() 
    {
        return grooveWidth;
    }
    public void setManholeDepth(Double manholeDepth) 
    {
        this.manholeDepth = manholeDepth;
    }
 
    public Double getManholeDepth() 
    {
        return manholeDepth;
    }
    public void setDrillRig(String drillRig) 
    {
        this.drillRig = drillRig;
    }
 
    public String getDrillRig() 
    {
        return drillRig;
    }
    public void setDrillComp(String drillComp) 
    {
        this.drillComp = drillComp;
    }
 
    public String getDrillComp() 
    {
        return drillComp;
    }
    public void setLongitude(Double longitude) 
    {
        this.longitude = longitude;
    }
 
    public Double getLongitude() 
    {
        return longitude;
    }
    public void setLatitude(Double latitude) 
    {
        this.latitude = latitude;
    }
 
    public Double getLatitude() 
    {
        return latitude;
    }
    public void setLocationTime(Date locationTime) 
    {
        this.locationTime = locationTime;
    }
 
    public Date getLocationTime() 
    {
        return locationTime;
    }
    public void setRemarkMsg(String remarkMsg) 
    {
        this.remarkMsg = remarkMsg;
    }
 
    public String getRemarkMsg() 
    {
        return remarkMsg;
    }
    public void setTask(String task) 
    {
        this.task = task;
    }
 
    public String getTask() 
    {
        return task;
    }
    public void setTaskRemark(String taskRemark) 
    {
        this.taskRemark = taskRemark;
    }
 
    public String getTaskRemark() 
    {
        return taskRemark;
    }
    public void setState(String state) 
    {
        this.state = state;
    }
 
    public String getState() 
    {
        return state;
    }
    public void setProgress(String progress) 
    {
        this.progress = progress;
    }
 
    public String getProgress() 
    {
        return progress;
    }
    public void setDescriptorSign(String descriptorSign) 
    {
        this.descriptorSign = descriptorSign;
    }
 
    public String getDescriptorSign() 
    {
        return descriptorSign;
    }
    public void setDrillerSign(String drillerSign) 
    {
        this.drillerSign = drillerSign;
    }
 
    public String getDrillerSign() 
    {
        return drillerSign;
    }
    public void setMeasurerSign(String measurerSign) 
    {
        this.measurerSign = measurerSign;
    }
 
    public String getMeasurerSign() 
    {
        return measurerSign;
    }
    public void setCorrectorSign(String correctorSign) 
    {
        this.correctorSign = correctorSign;
    }
 
    public String getCorrectorSign() 
    {
        return correctorSign;
    }
    public void setProcuratorSign(String procuratorSign) 
    {
        this.procuratorSign = procuratorSign;
    }
 
    public String getProcuratorSign() 
    {
        return procuratorSign;
    }
    public void setDescriptor(String descriptor) 
    {
        this.descriptor = descriptor;
    }
 
    public String getDescriptor() 
    {
        return descriptor;
    }
    public void setDescriptorNo(String descriptorNo) 
    {
        this.descriptorNo = descriptorNo;
    }
 
    public String getDescriptorNo() 
    {
        return descriptorNo;
    }
    public void setDriller(String driller) 
    {
        this.driller = driller;
    }
 
    public String getDriller() 
    {
        return driller;
    }
    public void setDrillerNo(String drillerNo) 
    {
        this.drillerNo = drillerNo;
    }
 
    public String getDrillerNo() 
    {
        return drillerNo;
    }
    public void setDrillImg(String drillImg) 
    {
        this.drillImg = drillImg;
    }
 
    public String getDrillImg() 
    {
        return drillImg;
    }
    public void setDrillVideo(String drillVideo) 
    {
        this.drillVideo = drillVideo;
    }
 
    public String getDrillVideo() 
    {
        return drillVideo;
    }
    public void setDelFlag(String delFlag) 
    {
        this.delFlag = delFlag;
    }
 
    public String getDelFlag() 
    {
        return delFlag;
    }
    public void setDrillrigno(String drillrigno) 
    {
        this.drillrigno = drillrigno;
    }
 
    public String getDrillrigno() 
    {
        return drillrigno;
    }
    public void setIds(String ids) 
    {
        this.ids = ids;
    }
 
    public String getIds() 
    {
        return ids;
    }
    public void setIsHistory(String isHistory) 
    {
        this.isHistory = isHistory;
    }
 
    public String getIsHistory() 
    {
        return isHistory;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("projNo", getProjNo())
            .append("holeNo", getHoleNo())
            .append("officeCode", getOfficeCode())
            .append("holeElev", getHoleElev())
            .append("holeDepth", getHoleDepth())
            .append("holeShift", getHoleShift())
            .append("holeType", getHoleType())
            .append("rigModel", getRigModel())
            .append("holeDiam", getHoleDiam())
            .append("endDiam", getEndDiam())
            .append("startDate", getStartDate())
            .append("endDate", getEndDate())
            .append("crownNo", getCrownNo())
            .append("mileageMile", getMileageMile())
            .append("holeHeightDif", getHoleHeightDif())
            .append("roadLevel", getRoadLevel())
            .append("grooveDepth", getGrooveDepth())
            .append("grooveLenth", getGrooveLenth())
            .append("grooveWidth", getGrooveWidth())
            .append("manholeDepth", getManholeDepth())
            .append("drillRig", getDrillRig())
            .append("drillComp", getDrillComp())
            .append("longitude", getLongitude())
            .append("latitude", getLatitude())
            .append("locationTime", getLocationTime())
            .append("remarkMsg", getRemarkMsg())
            .append("task", getTask())
            .append("taskRemark", getTaskRemark())
            .append("state", getState())
            .append("progress", getProgress())
            .append("createTime", getCreateTime())
            .append("updateTime", getUpdateTime())
            .append("descriptorSign", getDescriptorSign())
            .append("drillerSign", getDrillerSign())
            .append("measurerSign", getMeasurerSign())
            .append("correctorSign", getCorrectorSign())
            .append("procuratorSign", getProcuratorSign())
            .append("descriptor", getDescriptor())
            .append("descriptorNo", getDescriptorNo())
            .append("driller", getDriller())
            .append("drillerNo", getDrillerNo())
            .append("drillImg", getDrillImg())
            .append("drillVideo", getDrillVideo())
            .append("delFlag", getDelFlag())
            .append("drillrigno", getDrillrigno())
            .append("ids", getIds())
            .append("isHistory", getIsHistory())
            .toString();
    }
}