地质所 沉降监测网建设项目
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
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
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_hole_info
 * 
 * @author zmk
 * @date 2022-09-01
 */
public class HydrologyHoleInfo extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** null */
    private Long id;
 
    /** 井号 */
    @Excel(name = "井号")
    private String holeNum;
 
    /** 区县 */
    @Excel(name = "区县")
    private String district;
 
    /** 孔位 */
    @Excel(name = "孔位")
    private String address;
 
    /** 经度 */
    @Excel(name = "经度")
    private Double lng;
 
    /** 纬度 */
    @Excel(name = "纬度")
    private Double lat;
 
    /** 孔深(m) */
    @Excel(name = "孔深(m)")
    private Double holeDepth;
 
    /** 孔口标高 */
    @Excel(name = "孔口标高")
    private Double elevation;
 
    /** 成井时间 */
    @Excel(name = "成井时间")
    private String wellDate;
 
    /** 滤水管埋深 */
    @Excel(name = "滤水管埋深")
    private String pipeDepth;
 
    /** 仪器类型 */
    @Excel(name = "仪器类型")
    private String machineType;
 
    public void setId(Long id) 
    {
        this.id = id;
    }
 
    public Long getId() 
    {
        return id;
    }
    public void setHoleNum(String holeNum) 
    {
        this.holeNum = holeNum;
    }
 
    public String getHoleNum() 
    {
        return holeNum;
    }
    public void setDistrict(String district) 
    {
        this.district = district;
    }
 
    public String getDistrict() 
    {
        return district;
    }
    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 setHoleDepth(Double holeDepth) 
    {
        this.holeDepth = holeDepth;
    }
 
    public Double getHoleDepth() 
    {
        return holeDepth;
    }
    public void setElevation(Double elevation) 
    {
        this.elevation = elevation;
    }
 
    public Double getElevation() 
    {
        return elevation;
    }
    public void setWellDate(String wellDate) 
    {
        this.wellDate = wellDate;
    }
 
    public String getWellDate() 
    {
        return wellDate;
    }
    public void setPipeDepth(String pipeDepth) 
    {
        this.pipeDepth = pipeDepth;
    }
 
    public String getPipeDepth() 
    {
        return pipeDepth;
    }
    public void setMachineType(String machineType) 
    {
        this.machineType = machineType;
    }
 
    public String getMachineType() 
    {
        return machineType;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("holeNum", getHoleNum())
            .append("district", getDistrict())
            .append("address", getAddress())
            .append("lng", getLng())
            .append("lat", getLat())
            .append("holeDepth", getHoleDepth())
            .append("elevation", getElevation())
            .append("wellDate", getWellDate())
            .append("pipeDepth", getPipeDepth())
            .append("machineType", getMachineType())
            .append("remark", getRemark())
            .append("createTime", getCreateTime())
            .toString();
    }
}