地质所 沉降监测网建设项目
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
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_stage_info
 * 
 * @author zzf
 * @date 2022-03-25
 */
public class StageInfo extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 主键 */
    private String id;
 
    /** 项目编号 */
    @Excel(name = "项目编号")
    private String projNo;
 
    /** 钻孔编号 */
    @Excel(name = "钻孔编号")
    private String holeNo;
 
    /** 水位号 */
    @Excel(name = "水位号")
    private String stageNo;
 
    /** 初见水位 */
    @Excel(name = "初见水位")
    private Double initialWaterLevel;
 
    /** 静止水位 */
    @Excel(name = "静止水位")
    private Double staticWaterLevel;
 
    /** 初见水位时间 */
    @Excel(name = "初见水位时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date initialWaterTime;
 
    /** 静止水位时间 */
    @Excel(name = "静止水位时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date staticWaterTime;
 
    /** 时间间隔 */
    @Excel(name = "时间间隔")
    private Double timeInterval;
 
    /** 是否取水 */
    @Excel(name = "是否取水")
    private String ifFetchWater;
 
    /** 地下水类型 */
    @Excel(name = "地下水类型")
    private String groundwaterType;
 
    /** 取水深度 */
    @Excel(name = "取水深度")
    private String waterIntakeDepth;
 
    /** 取水方法 */
    @Excel(name = "取水方法")
    private String waterIntakeWay;
 
    /** 经度 */
    @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 remarks;
 
    /** 描述员 */
    @Excel(name = "描述员")
    private String descriptor;
 
    /** 司钻员 */
    @Excel(name = "司钻员")
    private String driller;
 
    /** 水位照片 */
    @Excel(name = "水位照片")
    private String stageImg;
 
    /** 水位视频 */
    @Excel(name = "水位视频")
    private String stageVideo;
 
    /** 删除标记,0正常,1删除 */
    private String delFlag;
 
    /** null */
    @Excel(name = "null")
    private String ishistory;
 
    /** 记录编号 */
    @Excel(name = "记录编号")
    private String recordNo;
 
    /** 记录类型 */
    @Excel(name = "记录类型")
    private String recordType;
 
    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 setStageNo(String stageNo) 
    {
        this.stageNo = stageNo;
    }
 
    public String getStageNo() 
    {
        return stageNo;
    }
    public void setInitialWaterLevel(Double initialWaterLevel) 
    {
        this.initialWaterLevel = initialWaterLevel;
    }
 
    public Double getInitialWaterLevel() 
    {
        return initialWaterLevel;
    }
    public void setStaticWaterLevel(Double staticWaterLevel) 
    {
        this.staticWaterLevel = staticWaterLevel;
    }
 
    public Double getStaticWaterLevel() 
    {
        return staticWaterLevel;
    }
    public void setInitialWaterTime(Date initialWaterTime) 
    {
        this.initialWaterTime = initialWaterTime;
    }
 
    public Date getInitialWaterTime() 
    {
        return initialWaterTime;
    }
    public void setStaticWaterTime(Date staticWaterTime) 
    {
        this.staticWaterTime = staticWaterTime;
    }
 
    public Date getStaticWaterTime() 
    {
        return staticWaterTime;
    }
    public void setTimeInterval(Double timeInterval) 
    {
        this.timeInterval = timeInterval;
    }
 
    public Double getTimeInterval() 
    {
        return timeInterval;
    }
    public void setIfFetchWater(String ifFetchWater) 
    {
        this.ifFetchWater = ifFetchWater;
    }
 
    public String getIfFetchWater() 
    {
        return ifFetchWater;
    }
    public void setGroundwaterType(String groundwaterType) 
    {
        this.groundwaterType = groundwaterType;
    }
 
    public String getGroundwaterType() 
    {
        return groundwaterType;
    }
    public void setWaterIntakeDepth(String waterIntakeDepth) 
    {
        this.waterIntakeDepth = waterIntakeDepth;
    }
 
    public String getWaterIntakeDepth() 
    {
        return waterIntakeDepth;
    }
    public void setWaterIntakeWay(String waterIntakeWay) 
    {
        this.waterIntakeWay = waterIntakeWay;
    }
 
    public String getWaterIntakeWay() 
    {
        return waterIntakeWay;
    }
    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 setRemarks(String remarks) 
    {
        this.remarks = remarks;
    }
 
    public String getRemarks() 
    {
        return remarks;
    }
    public void setDescriptor(String descriptor) 
    {
        this.descriptor = descriptor;
    }
 
    public String getDescriptor() 
    {
        return descriptor;
    }
    public void setDriller(String driller) 
    {
        this.driller = driller;
    }
 
    public String getDriller() 
    {
        return driller;
    }
    public void setStageImg(String stageImg) 
    {
        this.stageImg = stageImg;
    }
 
    public String getStageImg() 
    {
        return stageImg;
    }
    public void setStageVideo(String stageVideo) 
    {
        this.stageVideo = stageVideo;
    }
 
    public String getStageVideo() 
    {
        return stageVideo;
    }
    public void setDelFlag(String delFlag) 
    {
        this.delFlag = delFlag;
    }
 
    public String getDelFlag() 
    {
        return delFlag;
    }
    public void setIshistory(String ishistory) 
    {
        this.ishistory = ishistory;
    }
 
    public String getIshistory() 
    {
        return ishistory;
    }
    public void setRecordNo(String recordNo) 
    {
        this.recordNo = recordNo;
    }
 
    public String getRecordNo() 
    {
        return recordNo;
    }
    public void setRecordType(String recordType) 
    {
        this.recordType = recordType;
    }
 
    public String getRecordType() 
    {
        return recordType;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("projNo", getProjNo())
            .append("holeNo", getHoleNo())
            .append("stageNo", getStageNo())
            .append("initialWaterLevel", getInitialWaterLevel())
            .append("staticWaterLevel", getStaticWaterLevel())
            .append("initialWaterTime", getInitialWaterTime())
            .append("staticWaterTime", getStaticWaterTime())
            .append("timeInterval", getTimeInterval())
            .append("ifFetchWater", getIfFetchWater())
            .append("groundwaterType", getGroundwaterType())
            .append("waterIntakeDepth", getWaterIntakeDepth())
            .append("waterIntakeWay", getWaterIntakeWay())
            .append("longitude", getLongitude())
            .append("latitude", getLatitude())
            .append("locationTime", getLocationTime())
            .append("createTime", getCreateTime())
            .append("updateTime", getUpdateTime())
            .append("remarks", getRemarks())
            .append("descriptor", getDescriptor())
            .append("driller", getDriller())
            .append("stageImg", getStageImg())
            .append("stageVideo", getStageVideo())
            .append("delFlag", getDelFlag())
            .append("ishistory", getIshistory())
            .append("recordNo", getRecordNo())
            .append("recordType", getRecordType())
            .toString();
    }
}