地质所 沉降监测网建设项目
zmk
2024-05-18 cf614786f177f2b426f1c08e9a5870d05e2d203d
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
package com.javaweb.geo.domain;
 
import com.fasterxml.jackson.annotation.JsonFormat;
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_hole
 * 
 * @author zmk
 * @date 2022-10-20
 */
public class Hole extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 主键 */
    private String ids;
 
    /** 项目序列号(必填) */
    @Excel(name = "项目序列号", readConverterExp = "必=填")
    private String projectId;
 
    /** 勘探点编号 */
    @Excel(name = "勘探点编号")
    private String code;
 
    /** 描述、技术要求 */
    @Excel(name = "描述、技术要求")
    private String description;
 
    /** 勘探点类型(1-探井、2-钻孔) */
    @Excel(name = "勘探点类型", readConverterExp = "1=-探井、2-钻孔")
    private String type;
 
    /** 孔口高程 */
    @Excel(name = "孔口高程")
    private String elevation;
 
    /** 设计孔深 */
    @Excel(name = "设计孔深")
    private Double depth;
 
    /** 勘探点经度 */
    @Excel(name = "勘探点经度")
    private Double longitude;
 
    /** 勘探点纬度 */
    @Excel(name = "勘探点纬度")
    private Double latitude;
 
    /** 相对坐标X */
    @Excel(name = "相对坐标X")
    private Double surveyX;
 
    /** 相对坐标Y */
    @Excel(name = "相对坐标Y")
    private Double surveyY;
 
    /** 相对坐标Z */
    @Excel(name = "相对坐标Z")
    private Double surveyZ;
 
    /** 测量坐标纬度 */
    @Excel(name = "测量坐标纬度")
    private Double surveyLatitude;
 
    /** 测量坐标经度 */
    @Excel(name = "测量坐标经度")
    private Double surveyLongitude;
 
    /** 钻孔定位纬度 */
    @Excel(name = "钻孔定位纬度")
    private String mapLatitude;
 
    /** 钻孔定位经度 */
    @Excel(name = "钻孔定位经度")
    private String mapLongitude;
 
    /** 钻孔定位时间 */
    @Excel(name = "钻孔定位时间", width = 30, dateFormat = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd HH-mm-ss",timezone = "GMT+8")
    private Date mapTime;
 
    /** 无法定位的地点 */
    @Excel(name = "无法定位的地点")
    private String position;
 
    /** 无法定位的时间 */
    @Excel(name = "无法定位的时间", width = 30, dateFormat = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd HH-mm-ss",timezone = "GMT+8")
    private Date locateTime;
 
    /** 无法定位的原因 */
    @Excel(name = "无法定位的原因")
    private String reason;
 
 
    /** 当前进度  footageCpl/footage */
    private Double rate;
 
    /** 总进尺 */
    private Double footage;
 
    /** 已完成进尺 */
    private Double footageCpl;
 
    /** 钻孔状态 */
    @Excel(name = "钻孔状态")
    private String status;
 
    /** 是否删除 */
    @Excel(name = "是否删除")
    private Boolean isDeleted;
 
    /** 是否被异常扫描(0-未扫描,1-已扫描) */
    private String isFlag;
 
    public Double getRate() {
        return rate;
    }
 
    public void setRate(Double rate) {
        this.rate = rate;
    }
 
    public Double getFootage() {
        return footage;
    }
 
    public void setFootage(Double footage) {
        this.footage = footage;
    }
 
    public Double getFootageCpl() {
        return footageCpl;
    }
 
    public void setFootageCpl(Double footageCpl) {
        this.footageCpl = footageCpl;
    }
 
 
    public void setIds(String ids) 
    {
        this.ids = ids;
    }
 
    public String getIds() 
    {
        return ids;
    }
    public void setProjectId(String projectId) 
    {
        this.projectId = projectId;
    }
 
    public String getProjectId() 
    {
        return projectId;
    }
    public void setCode(String code) 
    {
        this.code = code;
    }
 
    public String getCode() 
    {
        return code;
    }
    public void setDescription(String description) 
    {
        this.description = description;
    }
 
    public String getDescription() 
    {
        return description;
    }
    public void setType(String type) 
    {
        this.type = type;
    }
 
    public String getType() 
    {
        return type;
    }
    public void setElevation(String elevation) 
    {
        this.elevation = elevation;
    }
 
    public String getElevation() 
    {
        return elevation;
    }
    public void setDepth(Double depth) 
    {
        this.depth = depth;
    }
 
    public Double getDepth() 
    {
        return depth;
    }
    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 setSurveyX(Double surveyX) 
    {
        this.surveyX = surveyX;
    }
 
    public Double getSurveyX() 
    {
        return surveyX;
    }
    public void setSurveyY(Double surveyY) 
    {
        this.surveyY = surveyY;
    }
 
    public Double getSurveyY() 
    {
        return surveyY;
    }
    public void setSurveyZ(Double surveyZ) 
    {
        this.surveyZ = surveyZ;
    }
 
    public Double getSurveyZ() 
    {
        return surveyZ;
    }
    public void setSurveyLatitude(Double surveyLatitude) 
    {
        this.surveyLatitude = surveyLatitude;
    }
 
    public Double getSurveyLatitude() 
    {
        return surveyLatitude;
    }
    public void setSurveyLongitude(Double surveyLongitude) 
    {
        this.surveyLongitude = surveyLongitude;
    }
 
    public Double getSurveyLongitude() 
    {
        return surveyLongitude;
    }
    public void setMapLatitude(String mapLatitude) 
    {
        this.mapLatitude = mapLatitude;
    }
 
    public String getMapLatitude() 
    {
        return mapLatitude;
    }
    public void setMapLongitude(String mapLongitude) 
    {
        this.mapLongitude = mapLongitude;
    }
 
    public String getMapLongitude() 
    {
        return mapLongitude;
    }
    public void setMapTime(Date mapTime) 
    {
        this.mapTime = mapTime;
    }
 
    public Date getMapTime() 
    {
        return mapTime;
    }
    public void setPosition(String position) 
    {
        this.position = position;
    }
 
    public String getPosition() 
    {
        return position;
    }
    public void setLocateTime(Date locateTime) 
    {
        this.locateTime = locateTime;
    }
 
    public Date getLocateTime() 
    {
        return locateTime;
    }
    public void setReason(String reason) 
    {
        this.reason = reason;
    }
 
    public String getReason() 
    {
        return reason;
    }
 
    public void setStatus(String status) 
    {
        this.status = status;
    }
 
    public String getStatus() 
    {
        return status;
    }
    public void setIsDeleted(Boolean isDeleted)
    {
        this.isDeleted = isDeleted;
    }
 
    public Boolean getIsDeleted()
    {
        return isDeleted;
    }
 
    public String getIsFlag() {
        return isFlag;
    }
 
    public void setIsFlag(String isFlag) {
        this.isFlag = isFlag;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("ids", getIds())
            .append("projectId", getProjectId())
            .append("code", getCode())
            .append("createTime", getCreateTime())
            .append("updateTime", getUpdateTime())
            .append("description", getDescription())
            .append("type", getType())
            .append("elevation", getElevation())
            .append("depth", getDepth())
            .append("longitude", getLongitude())
            .append("latitude", getLatitude())
            .append("surveyX", getSurveyX())
            .append("surveyY", getSurveyY())
            .append("surveyZ", getSurveyZ())
            .append("surveyLatitude", getSurveyLatitude())
            .append("surveyLongitude", getSurveyLongitude())
            .append("mapLatitude", getMapLatitude())
            .append("mapLongitude", getMapLongitude())
            .append("mapTime", getMapTime())
            .append("position", getPosition())
            .append("locateTime", getLocateTime())
            .append("reason", getReason())
            .append("rate", getRate())
            .append("footage", getFootage())
            .append("footageCpl", getFootageCpl())
            .append("status", getStatus())
            .append("isDeleted", getIsDeleted())
            .append("isFlag", getIsFlag())
            .toString();
    }
}