地质所 沉降监测网建设项目
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
package com.javaweb.geo.vo;
 
import com.javaweb.geo.domain.HandleException;
 
import java.util.Date;
 
/**
 * @author mzy-cxy
 */
public class ExceptionDistanceVo{
 
    // 记录编号
    private String code;
 
    //偏差距离
    private Double distance;
 
    // 经度
    private Double lng;
 
    // 维度
    private Double lat;
 
    //记录类型
    private String recordType;
 
    // 定位时间
    private Date gpsTime;
 
    /** 记录ids */
    private String ids;
 
    /** 记录起始深度 */
    private Double beginDepth;
 
    /** 记录终止深度 */
    private Double endDepth;
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    public Double getDistance() {
        return distance;
    }
 
    public void setDistance(Double distance) {
        this.distance = distance;
    }
 
    public Double getLng() {
        return lng;
    }
 
    public void setLng(Double lng) {
        this.lng = lng;
    }
 
    public Double getLat() {
        return lat;
    }
 
    public void setLat(Double lat) {
        this.lat = lat;
    }
 
    public String getRecordType() {
        return recordType;
    }
 
    public void setRecordType(String recordType) {
        this.recordType = recordType;
    }
 
    public Date getGpsTime() {
        return gpsTime;
    }
 
    public void setGpsTime(Date gpsTime) {
        this.gpsTime = gpsTime;
    }
 
    public String getIds() {
        return ids;
    }
 
    public void setIds(String ids) {
        this.ids = ids;
    }
 
    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;
    }
}