地质所 沉降监测网建设项目
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
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;
 
/**
 * 钻孔记录对象 js_hole_record
 * 
 * @author ruoyi
 * @date 2022-03-22
 */
public class HoleRecord extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** id */
    private String id;
 
    /** 记录编号 */
    @Excel(name = "记录编号")
    private String recordNo;
 
    /** 项目id */
    @Excel(name = "项目id")
    private String projectId;
 
    /** 钻孔id */
    @Excel(name = "钻孔id")
    private String drillId;
 
    /** 记录类型(1:测试/原位、2:取样、5:回次、8:岩土、水位)、13:测试 */
    @Excel(name = "记录类型(1:测试/原位、2:取样、5:回次、8:岩土、水位)、13:测试")
    private String recordType;
 
    /** 起始深度 */
    @Excel(name = "起始深度")
    private Long startDepth;
 
    /** 终止深度 */
    @Excel(name = "终止深度")
    private Long endDepth;
 
    /** 钻进方法(回次记录) */
    @Excel(name = "钻进方法", readConverterExp = "回=次记录")
    private String drillMethod;
 
    /** 护壁方法(回次记录) */
    @Excel(name = "护壁方法", readConverterExp = "回=次记录")
    private String protectMethod;
 
    /** 钻孔孔径(回次记录) */
    @Excel(name = "钻孔孔径", readConverterExp = "回=次记录")
    private Long drillAperture;
 
    /** 土样质量等级(取样记录) */
    @Excel(name = "土样质量等级", readConverterExp = "取=样记录")
    private String soilQuality;
 
    /** 取样工具和方法(取样记录) */
    @Excel(name = "取样工具和方法", readConverterExp = "取=样记录")
    private String samplingMethod;
 
    /** 岩土类型(岩土、水位记录) */
    @Excel(name = "岩土类型", readConverterExp = "岩=土、水位记录")
    private String rockType;
 
    /** 岩土定名(岩土、水位记录) */
    @Excel(name = "岩土定名", readConverterExp = "岩=土、水位记录")
    private String rockName;
 
    /** 颜色(岩土、水位记录) */
    @Excel(name = "颜色", readConverterExp = "岩=土、水位记录")
    private String color;
 
    /** 颗粒形状(岩土、水位记录) */
    @Excel(name = "颗粒形状", readConverterExp = "岩=土、水位记录")
    private String particleShape;
 
    /** 颗粒排列(岩土、水位记录) */
    @Excel(name = "颗粒排列", readConverterExp = "岩=土、水位记录")
    private String particleArrange;
 
    /** 颗粒级配(岩土、水位记录) */
    @Excel(name = "颗粒级配", readConverterExp = "岩=土、水位记录")
    private String particleGrade;
 
    /** 湿度(岩土、水位记录) */
    @Excel(name = "湿度", readConverterExp = "岩=土、水位记录")
    private String humidity;
 
    /** 密实度(岩土、水位记录) */
    @Excel(name = "密实度", readConverterExp = "岩=土、水位记录")
    private String density;
 
    /** 均匀性(岩土、水位记录) */
    @Excel(name = "均匀性", readConverterExp = "岩=土、水位记录")
    private String uniformity;
 
    /** 状态(岩土、水位记录) */
    @Excel(name = "状态", readConverterExp = "岩=土、水位记录")
    private String state;
 
    /** 包含物(岩土、水位记录) */
    @Excel(name = "包含物", readConverterExp = "岩=土、水位记录")
    private String inclusions;
 
    /** 一般粒径小(岩土、水位记录) */
    @Excel(name = "一般粒径小", readConverterExp = "岩=土、水位记录")
    private String generalSmallParticle;
 
    /** 一般粒径大(岩土、水位记录) */
    @Excel(name = "一般粒径大", readConverterExp = "岩=土、水位记录")
    private String generalBigParticle;
 
    /** 较大粒径小(岩土、水位记录) */
    @Excel(name = "较大粒径小", readConverterExp = "岩=土、水位记录")
    private String largerSmallParticle;
 
    /** 较大粒径大(岩土、水位记录) */
    @Excel(name = "较大粒径大", readConverterExp = "岩=土、水位记录")
    private String largerBigParticle;
 
    /** 最大粒径(岩土、水位记录) */
    @Excel(name = "最大粒径", readConverterExp = "岩=土、水位记录")
    private String biggestParticle;
 
    /** 主要成分(岩土、水位记录) */
    @Excel(name = "主要成分", readConverterExp = "岩=土、水位记录")
    private String mainIngredient;
 
    /** 次要成分(岩土、水位记录) */
    @Excel(name = "次要成分", readConverterExp = "岩=土、水位记录")
    private String secondIngredient;
 
    /** 坚硬程度(岩土、水位记录) */
    @Excel(name = "坚硬程度", readConverterExp = "岩=土、水位记录")
    private String hardDegree;
 
    /** 完整程度(岩土、水位记录) */
    @Excel(name = "完整程度", readConverterExp = "岩=土、水位记录")
    private String completeDegree;
 
    /** 可挖性(岩土、水位记录) */
    @Excel(name = "可挖性", readConverterExp = "岩=土、水位记录")
    private String digProperty;
 
    /** 钻孔长度(测试记录) */
    @Excel(name = "钻孔长度(测试记录)")
    private Long drillLength;
 
    /** 预打起始深度(测试记录) */
    @Excel(name = "预打起始深度(测试记录)")
    private Long advanceStartDepth;
 
    /** 第1次起始深度(测试记录) */
    @Excel(name = "第1次起始深度(测试记录)")
    private Long firstStartDepth;
 
    /** 第2次起始深度(测试记录) */
    @Excel(name = "第2次起始深度(测试记录)")
    private Long secondStartDepth;
 
    /** 第3次起始深度(测试记录) */
    @Excel(name = "第3次起始深度(测试记录)")
    private Long thirdStartDepth;
 
    /** 预打终止深度(测试记录) */
    @Excel(name = "预打终止深度(测试记录)")
    private Long advanceEndDepth;
 
    /** 第一次终止深度(测试记录) */
    @Excel(name = "第一次终止深度(测试记录)")
    private Long firstEndDepth;
 
    /** 第二次终止深度(测试记录) */
    @Excel(name = "第二次终止深度(测试记录)")
    private Long secondEndDepth;
 
    /** 第三次终止深度(测试记录) */
    @Excel(name = "第三次终止深度(测试记录)")
    private Long thirdEndDepth;
 
    /** 预打锤击次数(测试记录) */
    @Excel(name = "预打锤击次数(测试记录)")
    private Long advanceHammerNumber;
 
    /** 第一次锤击次数(测试记录) */
    @Excel(name = "第一次锤击次数(测试记录)")
    private Long firstHammerNumber;
 
    /** 第二次锤击次数(测试记录) */
    @Excel(name = "第二次锤击次数(测试记录)")
    private Long secondHammerNumber;
 
    /** 第三次锤击次数(测试记录) */
    @Excel(name = "第三次锤击次数(测试记录)")
    private Long thirdHammerNumber;
 
    public void setId(String id) 
    {
        this.id = id;
    }
 
    public String getId() 
    {
        return id;
    }
    public void setRecordNo(String recordNo) 
    {
        this.recordNo = recordNo;
    }
 
    public String getRecordNo() 
    {
        return recordNo;
    }
    public void setProjectId(String projectId) 
    {
        this.projectId = projectId;
    }
 
    public String getProjectId() 
    {
        return projectId;
    }
    public void setDrillId(String drillId) 
    {
        this.drillId = drillId;
    }
 
    public String getDrillId() 
    {
        return drillId;
    }
    public void setRecordType(String recordType) 
    {
        this.recordType = recordType;
    }
 
    public String getRecordType() 
    {
        return recordType;
    }
    public void setStartDepth(Long startDepth) 
    {
        this.startDepth = startDepth;
    }
 
    public Long getStartDepth() 
    {
        return startDepth;
    }
    public void setEndDepth(Long endDepth) 
    {
        this.endDepth = endDepth;
    }
 
    public Long getEndDepth() 
    {
        return endDepth;
    }
    public void setDrillMethod(String drillMethod) 
    {
        this.drillMethod = drillMethod;
    }
 
    public String getDrillMethod() 
    {
        return drillMethod;
    }
    public void setProtectMethod(String protectMethod) 
    {
        this.protectMethod = protectMethod;
    }
 
    public String getProtectMethod() 
    {
        return protectMethod;
    }
    public void setDrillAperture(Long drillAperture) 
    {
        this.drillAperture = drillAperture;
    }
 
    public Long getDrillAperture() 
    {
        return drillAperture;
    }
    public void setSoilQuality(String soilQuality) 
    {
        this.soilQuality = soilQuality;
    }
 
    public String getSoilQuality() 
    {
        return soilQuality;
    }
    public void setSamplingMethod(String samplingMethod) 
    {
        this.samplingMethod = samplingMethod;
    }
 
    public String getSamplingMethod() 
    {
        return samplingMethod;
    }
    public void setRockType(String rockType) 
    {
        this.rockType = rockType;
    }
 
    public String getRockType() 
    {
        return rockType;
    }
    public void setRockName(String rockName) 
    {
        this.rockName = rockName;
    }
 
    public String getRockName() 
    {
        return rockName;
    }
    public void setColor(String color) 
    {
        this.color = color;
    }
 
    public String getColor() 
    {
        return color;
    }
    public void setParticleShape(String particleShape) 
    {
        this.particleShape = particleShape;
    }
 
    public String getParticleShape() 
    {
        return particleShape;
    }
    public void setParticleArrange(String particleArrange) 
    {
        this.particleArrange = particleArrange;
    }
 
    public String getParticleArrange() 
    {
        return particleArrange;
    }
    public void setParticleGrade(String particleGrade) 
    {
        this.particleGrade = particleGrade;
    }
 
    public String getParticleGrade() 
    {
        return particleGrade;
    }
    public void setHumidity(String humidity) 
    {
        this.humidity = humidity;
    }
 
    public String getHumidity() 
    {
        return humidity;
    }
    public void setDensity(String density) 
    {
        this.density = density;
    }
 
    public String getDensity() 
    {
        return density;
    }
    public void setUniformity(String uniformity) 
    {
        this.uniformity = uniformity;
    }
 
    public String getUniformity() 
    {
        return uniformity;
    }
    public void setState(String state) 
    {
        this.state = state;
    }
 
    public String getState() 
    {
        return state;
    }
    public void setInclusions(String inclusions) 
    {
        this.inclusions = inclusions;
    }
 
    public String getInclusions() 
    {
        return inclusions;
    }
    public void setGeneralSmallParticle(String generalSmallParticle) 
    {
        this.generalSmallParticle = generalSmallParticle;
    }
 
    public String getGeneralSmallParticle() 
    {
        return generalSmallParticle;
    }
    public void setGeneralBigParticle(String generalBigParticle) 
    {
        this.generalBigParticle = generalBigParticle;
    }
 
    public String getGeneralBigParticle() 
    {
        return generalBigParticle;
    }
    public void setLargerSmallParticle(String largerSmallParticle) 
    {
        this.largerSmallParticle = largerSmallParticle;
    }
 
    public String getLargerSmallParticle() 
    {
        return largerSmallParticle;
    }
    public void setLargerBigParticle(String largerBigParticle) 
    {
        this.largerBigParticle = largerBigParticle;
    }
 
    public String getLargerBigParticle() 
    {
        return largerBigParticle;
    }
    public void setBiggestParticle(String biggestParticle) 
    {
        this.biggestParticle = biggestParticle;
    }
 
    public String getBiggestParticle() 
    {
        return biggestParticle;
    }
    public void setMainIngredient(String mainIngredient) 
    {
        this.mainIngredient = mainIngredient;
    }
 
    public String getMainIngredient() 
    {
        return mainIngredient;
    }
    public void setSecondIngredient(String secondIngredient) 
    {
        this.secondIngredient = secondIngredient;
    }
 
    public String getSecondIngredient() 
    {
        return secondIngredient;
    }
    public void setHardDegree(String hardDegree) 
    {
        this.hardDegree = hardDegree;
    }
 
    public String getHardDegree() 
    {
        return hardDegree;
    }
    public void setCompleteDegree(String completeDegree) 
    {
        this.completeDegree = completeDegree;
    }
 
    public String getCompleteDegree() 
    {
        return completeDegree;
    }
    public void setDigProperty(String digProperty) 
    {
        this.digProperty = digProperty;
    }
 
    public String getDigProperty() 
    {
        return digProperty;
    }
    public void setDrillLength(Long drillLength) 
    {
        this.drillLength = drillLength;
    }
 
    public Long getDrillLength() 
    {
        return drillLength;
    }
    public void setAdvanceStartDepth(Long advanceStartDepth) 
    {
        this.advanceStartDepth = advanceStartDepth;
    }
 
    public Long getAdvanceStartDepth() 
    {
        return advanceStartDepth;
    }
    public void setFirstStartDepth(Long firstStartDepth) 
    {
        this.firstStartDepth = firstStartDepth;
    }
 
    public Long getFirstStartDepth() 
    {
        return firstStartDepth;
    }
    public void setSecondStartDepth(Long secondStartDepth) 
    {
        this.secondStartDepth = secondStartDepth;
    }
 
    public Long getSecondStartDepth() 
    {
        return secondStartDepth;
    }
    public void setThirdStartDepth(Long thirdStartDepth) 
    {
        this.thirdStartDepth = thirdStartDepth;
    }
 
    public Long getThirdStartDepth() 
    {
        return thirdStartDepth;
    }
    public void setAdvanceEndDepth(Long advanceEndDepth) 
    {
        this.advanceEndDepth = advanceEndDepth;
    }
 
    public Long getAdvanceEndDepth() 
    {
        return advanceEndDepth;
    }
    public void setFirstEndDepth(Long firstEndDepth) 
    {
        this.firstEndDepth = firstEndDepth;
    }
 
    public Long getFirstEndDepth() 
    {
        return firstEndDepth;
    }
    public void setSecondEndDepth(Long secondEndDepth) 
    {
        this.secondEndDepth = secondEndDepth;
    }
 
    public Long getSecondEndDepth() 
    {
        return secondEndDepth;
    }
    public void setThirdEndDepth(Long thirdEndDepth) 
    {
        this.thirdEndDepth = thirdEndDepth;
    }
 
    public Long getThirdEndDepth() 
    {
        return thirdEndDepth;
    }
    public void setAdvanceHammerNumber(Long advanceHammerNumber) 
    {
        this.advanceHammerNumber = advanceHammerNumber;
    }
 
    public Long getAdvanceHammerNumber() 
    {
        return advanceHammerNumber;
    }
    public void setFirstHammerNumber(Long firstHammerNumber) 
    {
        this.firstHammerNumber = firstHammerNumber;
    }
 
    public Long getFirstHammerNumber() 
    {
        return firstHammerNumber;
    }
    public void setSecondHammerNumber(Long secondHammerNumber) 
    {
        this.secondHammerNumber = secondHammerNumber;
    }
 
    public Long getSecondHammerNumber() 
    {
        return secondHammerNumber;
    }
    public void setThirdHammerNumber(Long thirdHammerNumber) 
    {
        this.thirdHammerNumber = thirdHammerNumber;
    }
 
    public Long getThirdHammerNumber() 
    {
        return thirdHammerNumber;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("recordNo", getRecordNo())
            .append("projectId", getProjectId())
            .append("drillId", getDrillId())
            .append("recordType", getRecordType())
            .append("startDepth", getStartDepth())
            .append("endDepth", getEndDepth())
            .append("drillMethod", getDrillMethod())
            .append("protectMethod", getProtectMethod())
            .append("drillAperture", getDrillAperture())
            .append("soilQuality", getSoilQuality())
            .append("samplingMethod", getSamplingMethod())
            .append("rockType", getRockType())
            .append("rockName", getRockName())
            .append("color", getColor())
            .append("particleShape", getParticleShape())
            .append("particleArrange", getParticleArrange())
            .append("particleGrade", getParticleGrade())
            .append("humidity", getHumidity())
            .append("density", getDensity())
            .append("uniformity", getUniformity())
            .append("state", getState())
            .append("inclusions", getInclusions())
            .append("generalSmallParticle", getGeneralSmallParticle())
            .append("generalBigParticle", getGeneralBigParticle())
            .append("largerSmallParticle", getLargerSmallParticle())
            .append("largerBigParticle", getLargerBigParticle())
            .append("biggestParticle", getBiggestParticle())
            .append("mainIngredient", getMainIngredient())
            .append("secondIngredient", getSecondIngredient())
            .append("hardDegree", getHardDegree())
            .append("completeDegree", getCompleteDegree())
            .append("digProperty", getDigProperty())
            .append("drillLength", getDrillLength())
            .append("advanceStartDepth", getAdvanceStartDepth())
            .append("firstStartDepth", getFirstStartDepth())
            .append("secondStartDepth", getSecondStartDepth())
            .append("thirdStartDepth", getThirdStartDepth())
            .append("advanceEndDepth", getAdvanceEndDepth())
            .append("firstEndDepth", getFirstEndDepth())
            .append("secondEndDepth", getSecondEndDepth())
            .append("thirdEndDepth", getThirdEndDepth())
            .append("advanceHammerNumber", getAdvanceHammerNumber())
            .append("firstHammerNumber", getFirstHammerNumber())
            .append("secondHammerNumber", getSecondHammerNumber())
            .append("thirdHammerNumber", getThirdHammerNumber())
            .toString();
    }
}