liusuyi
2026-06-01 a2e7e8ff9cfaa69b001d483710bddbda50d55c91
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
package com.ard.work.api.domian;
 
import com.ard.common.core.annotation.Excel;
import com.ard.common.core.web.domain.BaseEntity;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
 
import java.util.Date;
 
/**
 * 井管理对象 ard_well
 * 
 * @author ruoyi
 * @date 2024-09-07
 */
@Data
public class ArdWell extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** id */
    private String id;
 
    /** 井号 */
    @Excel(name = "井号")
    private String wellId;
 
    /** 井号编码 */
    @Excel(name = "井号编码")
    private String wellNumber;
 
    /** 采油方式 */
    @Excel(name = "采油方式")
    private String oilProduction;
 
    /** 进所属区块 */
    @Excel(name = "进所属区块")
    private String wellBlock;
 
    /** 投产日期 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "投产日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date productionDate;
 
    /** 驱替方式 */
    @Excel(name = "驱替方式")
    private String displacementMode;
 
    /** 周边环境 */
    @Excel(name = "周边环境")
    private String surroundingEnvironment;
 
    /** 油井类型 */
    @Excel(name = "油井类型")
    private String wellType;
 
    /** 装载负荷 */
    @Excel(name = "装载负荷")
    private String installedLoad;
 
    /** 所属计量站或阀组名称 */
    @Excel(name = "所属计量站或阀组名称")
    private String meteringStation;
 
    /** 所属转接站 */
    @Excel(name = "所属转接站")
    private String transferStation;
 
    /** 所属脱水站 */
    @Excel(name = "所属脱水站")
    private String dehydrationStation;
 
    /** 运行状态 */
    @Excel(name = "运行状态")
    private String runStatus;
 
    /** 经度 */
    @Excel(name = "经度")
    private Double longitude;
 
    /** 纬度 */
    @Excel(name = "纬度")
    private Double latitude;
 
    /** 海拔 */
    @Excel(name = "海拔")
    private Double altitude;
 
    /** 朝向 */
    @Excel(name = "朝向")
    private String orientation;
 
    /** 水平角度 */
    @Excel(name = "水平角度")
    private Float pan;
    /** 俯仰角度 */
    @Excel(name = "俯仰角度")
    private Float tilt;
    /** 变倍值 */
    @Excel(name = "变倍值")
    private Float zoom;
    /** 关联相机 */
    @Excel(name = "关联相机")
    private String cameraId;
 
    /** 用户id */
    @Excel(name = "用户id")
    private Long userId;
 
    /** 部门id */
    @Excel(name = "部门id")
    private Long deptId;
 
    private String deptName;
 
    public String getOrientation() {
        return orientation;
    }
 
    public void setOrientation(String orientation) {
        this.orientation = orientation;
    }
 
    public String getCameraId() {
        return cameraId;
    }
 
    public void setCameraId(String cameraId) {
        this.cameraId = cameraId;
    }
 
    public Float getPan() {
        return pan;
    }
 
    public void setPan(Float pan) {
        this.pan = pan;
    }
 
    public Float getTilt() {
        return tilt;
    }
 
    public void setTilt(Float tilt) {
        this.tilt = tilt;
    }
 
    public Float getZoom() {
        return zoom;
    }
 
    public void setZoom(Float zoom) {
        this.zoom = zoom;
    }
 
    public void setId(String id)
    {
        this.id = id;
    }
 
    public String getId() 
    {
        return id;
    }
    public void setWellId(String wellId) 
    {
        this.wellId = wellId;
    }
 
    public String getWellId() 
    {
        return wellId;
    }
    public void setWellNumber(String wellNumber) 
    {
        this.wellNumber = wellNumber;
    }
 
    public String getWellNumber() 
    {
        return wellNumber;
    }
    public void setOilProduction(String oilProduction) 
    {
        this.oilProduction = oilProduction;
    }
 
    public String getOilProduction() 
    {
        return oilProduction;
    }
    public void setWellBlock(String wellBlock) 
    {
        this.wellBlock = wellBlock;
    }
 
    public String getWellBlock() 
    {
        return wellBlock;
    }
    public void setProductionDate(Date productionDate) 
    {
        this.productionDate = productionDate;
    }
 
    public Date getProductionDate() 
    {
        return productionDate;
    }
    public void setDisplacementMode(String displacementMode) 
    {
        this.displacementMode = displacementMode;
    }
 
    public String getDisplacementMode() 
    {
        return displacementMode;
    }
    public void setSurroundingEnvironment(String surroundingEnvironment) 
    {
        this.surroundingEnvironment = surroundingEnvironment;
    }
 
    public String getSurroundingEnvironment() 
    {
        return surroundingEnvironment;
    }
    public void setWellType(String wellType) 
    {
        this.wellType = wellType;
    }
 
    public String getWellType() 
    {
        return wellType;
    }
    public void setInstalledLoad(String installedLoad) 
    {
        this.installedLoad = installedLoad;
    }
 
    public String getInstalledLoad() 
    {
        return installedLoad;
    }
    public void setMeteringStation(String meteringStation) 
    {
        this.meteringStation = meteringStation;
    }
 
    public String getMeteringStation() 
    {
        return meteringStation;
    }
    public void setTransferStation(String transferStation) 
    {
        this.transferStation = transferStation;
    }
 
    public String getTransferStation() 
    {
        return transferStation;
    }
    public void setDehydrationStation(String dehydrationStation) 
    {
        this.dehydrationStation = dehydrationStation;
    }
 
    public String getDehydrationStation() 
    {
        return dehydrationStation;
    }
    public void setRunStatus(String runStatus) 
    {
        this.runStatus = runStatus;
    }
 
    public String getRunStatus() 
    {
        return runStatus;
    }
    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 setAltitude(Double altitude)
    {
        this.altitude = altitude;
    }
 
    public Double getAltitude()
    {
        return altitude;
    }
    public void setUserId(Long userId) 
    {
        this.userId = userId;
    }
 
    public Long getUserId() 
    {
        return userId;
    }
    public void setDeptId(Long deptId) 
    {
        this.deptId = deptId;
    }
 
    public Long getDeptId() 
    {
        return deptId;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("wellId", getWellId())
            .append("wellNumber", getWellNumber())
            .append("oilProduction", getOilProduction())
            .append("wellBlock", getWellBlock())
            .append("productionDate", getProductionDate())
            .append("displacementMode", getDisplacementMode())
            .append("surroundingEnvironment", getSurroundingEnvironment())
            .append("wellType", getWellType())
            .append("installedLoad", getInstalledLoad())
            .append("meteringStation", getMeteringStation())
            .append("transferStation", getTransferStation())
            .append("dehydrationStation", getDehydrationStation())
            .append("runStatus", getRunStatus())
            .append("longitude", getLongitude())
            .append("latitude", getLatitude())
            .append("altitude", getAltitude())
            .append("userId", getUserId())
            .append("deptId", getDeptId())
            .append("createBy", getCreateBy())
            .append("createTime", getCreateTime())
            .append("updateBy", getUpdateBy())
            .append("updateTime", getUpdateTime())
            .toString();
    }
}