地质所 沉降监测网建设项目
suerwei
2024-05-16 560e679c239af089e2ba79bdbec4bac331c01b4f
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
package com.javaweb.hydrology.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_hydrology_well_info
 * 
 * @author zmk
 * @date 2022-11-28
 */
public class HydrologyWellInfo extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 主键 */
    private Long id;
 
    /** 编号 */
    @Excel(name = "编号")
    private String num;
 
    /** 比例尺 */
    @Excel(name = "比例尺")
    private String scales;
 
    /** 井位置 */
    @Excel(name = "井位置")
    private String address;
 
    /** 经度 */
    @Excel(name = "经度")
    private Double lng;
 
    /** 纬度 */
    @Excel(name = "纬度")
    private Double lat;
 
    /** 测井日期 */
    @Excel(name = "测井日期")
    private String wellDate;
 
    /** 施工单位 */
    @Excel(name = "施工单位")
    private String constructionUnit;
 
    /** 井深(m) */
    @Excel(name = "井深", readConverterExp = "井深(m)")
    private Double depth;
 
    /** 测量井段 */
    @Excel(name = "测量井段")
    private String wellType;
 
    /** 钻头程序 */
    @Excel(name = "钻头程序")
    private String wellBit;
 
    /** 套管程序 */
    @Excel(name = "套管程序")
    private String wellCasing;
 
    /** 水井性质 */
    @Excel(name = "水井性质")
    private String wellNature;
 
    /** 电阻率 */
    @Excel(name = "电阻率")
    private String eleResistivity;
 
    /** 仪器型号 */
    @Excel(name = "仪器型号")
    private String machineType;
 
    /** 解释平台 */
    @Excel(name = "解释平台")
    private String interpretation;
 
    /** 解释人员 */
    @Excel(name = "解释人员")
    private String userExplain;
 
    /** 校对人员 */
    @Excel(name = "校对人员")
    private String userProof;
 
    /** 审核人员 */
    @Excel(name = "审核人员")
    private String userCheck;
 
    /** 勘察公司 */
    @Excel(name = "勘察公司")
    private String surveyCompany;
 
    /** 勘察公司地址 */
    @Excel(name = "勘察公司地址")
    private String surveyCompanyAddr;
 
    /** 工程师 */
    @Excel(name = "工程师")
    private String surveyEngineer;
 
    /** 联系方式 */
    @Excel(name = "联系方式")
    private String surveyTel;
 
    public void setId(Long id) 
    {
        this.id = id;
    }
 
    public Long getId() 
    {
        return id;
    }
    public void setNum(String num) 
    {
        this.num = num;
    }
 
    public String getNum() 
    {
        return num;
    }
    public void setAddress(String address) 
    {
        this.address = address;
    }
 
    public String getAddress() 
    {
        return address;
    }
    public void setLng(Double lng) 
    {
        this.lng = lng;
    }
 
    public Double getLng() 
    {
        return lng;
    }
    public void setLat(Double lat)
    {
        this.lat = lat;
    }
 
    public Double getLat()
    {
        return lat;
    }
    public void setWellDate(String wellDate) 
    {
        this.wellDate = wellDate;
    }
 
    public String getWellDate() 
    {
        return wellDate;
    }
    public void setConstructionUnit(String constructionUnit) 
    {
        this.constructionUnit = constructionUnit;
    }
 
    public String getConstructionUnit() 
    {
        return constructionUnit;
    }
    public void setDepth(Double depth) 
    {
        this.depth = depth;
    }
 
    public Double getDepth() 
    {
        return depth;
    }
    public void setWellType(String wellType) 
    {
        this.wellType = wellType;
    }
 
    public String getWellType() 
    {
        return wellType;
    }
    public void setWellBit(String wellBit) 
    {
        this.wellBit = wellBit;
    }
 
    public String getWellBit() 
    {
        return wellBit;
    }
    public void setWellCasing(String wellCasing) 
    {
        this.wellCasing = wellCasing;
    }
 
    public String getWellCasing() 
    {
        return wellCasing;
    }
    public void setWellNature(String wellNature) 
    {
        this.wellNature = wellNature;
    }
 
    public String getWellNature() 
    {
        return wellNature;
    }
    public void setEleResistivity(String eleResistivity) 
    {
        this.eleResistivity = eleResistivity;
    }
 
    public String getEleResistivity() 
    {
        return eleResistivity;
    }
    public void setMachineType(String machineType) 
    {
        this.machineType = machineType;
    }
 
    public String getMachineType() 
    {
        return machineType;
    }
    public void setInterpretation(String interpretation) 
    {
        this.interpretation = interpretation;
    }
 
    public String getInterpretation() 
    {
        return interpretation;
    }
    public void setUserExplain(String userExplain) 
    {
        this.userExplain = userExplain;
    }
 
    public String getUserExplain() 
    {
        return userExplain;
    }
    public void setUserProof(String userProof) 
    {
        this.userProof = userProof;
    }
 
    public String getUserProof() 
    {
        return userProof;
    }
    public void setUserCheck(String userCheck) 
    {
        this.userCheck = userCheck;
    }
 
    public String getUserCheck() 
    {
        return userCheck;
    }
    public void setSurveyCompany(String surveyCompany) 
    {
        this.surveyCompany = surveyCompany;
    }
 
    public String getSurveyCompany() 
    {
        return surveyCompany;
    }
    public void setSurveyCompanyAddr(String surveyCompanyAddr) 
    {
        this.surveyCompanyAddr = surveyCompanyAddr;
    }
 
    public String getSurveyCompanyAddr() 
    {
        return surveyCompanyAddr;
    }
    public void setSurveyEngineer(String surveyEngineer) 
    {
        this.surveyEngineer = surveyEngineer;
    }
 
    public String getSurveyEngineer() 
    {
        return surveyEngineer;
    }
    public void setSurveyTel(String surveyTel) 
    {
        this.surveyTel = surveyTel;
    }
 
    public String getSurveyTel() 
    {
        return surveyTel;
    }
 
    public String getScales() {
        return scales;
    }
 
    public void setScales(String scales) {
        this.scales = scales;
    }
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("num", getNum())
            .append("scales", getScales())
            .append("address", getAddress())
            .append("lng", getLng())
            .append("lat", getLat())
            .append("wellDate", getWellDate())
            .append("constructionUnit", getConstructionUnit())
            .append("depth", getDepth())
            .append("wellType", getWellType())
            .append("wellBit", getWellBit())
            .append("wellCasing", getWellCasing())
            .append("wellNature", getWellNature())
            .append("eleResistivity", getEleResistivity())
            .append("machineType", getMachineType())
            .append("interpretation", getInterpretation())
            .append("userExplain", getUserExplain())
            .append("userProof", getUserProof())
            .append("userCheck", getUserCheck())
            .append("surveyCompany", getSurveyCompany())
            .append("surveyCompanyAddr", getSurveyCompanyAddr())
            .append("surveyEngineer", getSurveyEngineer())
            .append("surveyTel", getSurveyTel())
            .append("remark", getRemark())
            .toString();
    }
}