地质所 沉降监测网建设项目
zmk
2024-05-15 9e3afc6d0fa514f986d3fea40fa23124e6fb5070
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
package com.javaweb.geotdp.vo;
 
 
/**
 * 上传 取土 记录
 */
public class RecordQTVo  extends RecordBaseVo{
 
 
    private Double beginDepth ;//  起始深度(用于展示)
    private Double endDepth ;// 终止深度(用于展示)
    private String earthType ;// 土样质量等级(Ⅰ级样、Ⅱ级样、Ⅲ级样、Ⅳ级样)
 
    /**
     * 取样工具和方法
     * (薄壁取土器、回转取土器、厚壁取土器、标准贯入器、螺纹钻头、岩心钻头、探井(槽)中可取土样)
     */
    private String getMode ;
 
    /**
     *  实验类型
     * (岩石试验、土的物理性质试验 、土的压缩固结试验 、土的抗剪强度试验、土的动力性质试验)
     */
    private String testType ;
 
    public Double getBeginDepth() {
        return beginDepth;
    }
 
    public void setBeginDepth(Double beginDepth) {
        this.beginDepth = beginDepth;
    }
 
    public Double getEndDepth() {
        return endDepth;
    }
 
    public void setEndDepth(Double endDepth) {
        this.endDepth = endDepth;
    }
 
    public String getEarthType() {
        return earthType;
    }
 
    public void setEarthType(String earthType) {
        this.earthType = earthType;
    }
 
    public String getGetMode() {
        return getMode;
    }
 
    public void setGetMode(String getMode) {
        this.getMode = getMode;
    }
 
    public String getTestType() {
        return testType;
    }
 
    public void setTestType(String testType) {
        this.testType = testType;
    }
}