地质所 沉降监测网建设项目
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
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
package com.javaweb.geotdp.vo;
 
/**
 * 原位测试  包含  记录-标贯 记录-动探
 */
public class RecordYWVo  extends RecordBaseVo{
 
    private Double drillLength ;// 钻杆长度(必填)
    private Double begin1 ;//  起始深度(必填)
    private Double end1 ;//  终止深度(必填)
    private Double blow1 ;//  击数(必填)
    private Double begin2 ;//
    private Double end2 ;//
    private Double blow2 ;//
    private Double begin3 ;//
    private Double end3 ;//
    private Double blow3 ;//
    private Double begin4 ;//
    private Double end4 ;//
    private Double blow4 ;//
 
    private String  powerType;//  动探类型(轻型、重型、超重型)
   // private Double drillLength ;//  钻杆长度
   // private Double begin1 ;//  起始深度(用于展示)
   // private Double end1 ;//  终止深度(用于展示)
   // private Double blow1 ;//  击数
    
    private String type ;
    
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public Double getDrillLength() {
        return drillLength;
    }
 
    public void setDrillLength(Double drillLength) {
        this.drillLength = drillLength;
    }
 
    public Double getBegin1() {
        return begin1;
    }
 
    public void setBegin1(Double begin1) {
        this.begin1 = begin1;
    }
 
    public Double getEnd1() {
        return end1;
    }
 
    public void setEnd1(Double end1) {
        this.end1 = end1;
    }
 
    public Double getBlow1() {
        return blow1;
    }
 
    public void setBlow1(Double blow1) {
        this.blow1 = blow1;
    }
 
    public Double getBegin2() {
        return begin2;
    }
 
    public void setBegin2(Double begin2) {
        this.begin2 = begin2;
    }
 
    public Double getEnd2() {
        return end2;
    }
 
    public void setEnd2(Double end2) {
        this.end2 = end2;
    }
 
    public Double getBlow2() {
        return blow2;
    }
 
    public void setBlow2(Double blow2) {
        this.blow2 = blow2;
    }
 
    public Double getBegin3() {
        return begin3;
    }
 
    public void setBegin3(Double begin3) {
        this.begin3 = begin3;
    }
 
    public Double getEnd3() {
        return end3;
    }
 
    public void setEnd3(Double end3) {
        this.end3 = end3;
    }
 
    public Double getBlow3() {
        return blow3;
    }
 
    public void setBlow3(Double blow3) {
        this.blow3 = blow3;
    }
 
    public Double getBegin4() {
        return begin4;
    }
 
    public void setBegin4(Double begin4) {
        this.begin4 = begin4;
    }
 
    public Double getEnd4() {
        return end4;
    }
 
    public void setEnd4(Double end4) {
        this.end4 = end4;
    }
 
    public Double getBlow4() {
        return blow4;
    }
 
    public void setBlow4(Double blow4) {
        this.blow4 = blow4;
    }
 
    public String getPowerType() {
        return powerType;
    }
 
    public void setPowerType(String powerType) {
        this.powerType = powerType;
    }
}