Administrator
2024-06-18 0c5606be951e50c6e86671ecde51b012f5d55735
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
package com.dy.pipIrrGlobal.pojoRm;
 
import java.util.Date;
 
/**
 * @author ZhuBaoMin
 * @date 2024-06-17 11:28
 * @LastEditTime 2024-06-17 11:28
 * @Description
 */
 
/**
 * 开关阀报最新数据表
 */
public class RmOpenCloseValveLast {
    public static final long serialVersionUID = 202402231602001L;
    /**
     * 主键
     */
    private Long id;
 
    /**
     * 控制器实体ID(外键)
     */
    private Long controllerId;
 
    /**
     * 取水口实体ID(外键)
     */
    private Long intakeId;
 
    /**
     * 控制器地址
     */
    private String rtuAddr;
 
    /**
     * 开阀数据接收日期时间
     */
    private Date opDt;
 
    /**
     * 开阀控制器时钟
     */
    private Date opRtuDt;
 
    /**
     * IC卡地址(远程关闭时为0)
     */
    private String opIcCardAddr;
 
    /**
     * IC卡编号(17位数字)
     */
    private String opIcCardNo;
 
    /**
     * 开阀订单号(16位数字)
     */
    private String opOrderNo;
 
    /**
     * 开泵/阀时间
     */
    private Date openDt;
 
    /**
     * 开阀水表累计水量
     */
    private Double opWaterTotalAmount;
 
    /**
     * 开阀电表累计电量
     */
    private Double opEleTotalAmount;
 
    /**
     * 开阀用户剩余金额
     */
    private Double opMoneyRemainUser;
 
    /**
     * 开阀用户剩余水量
     */
    private Double opWaterRemainUser;
 
    /**
     * 关泵/阀方式
     */
    private String opType;
 
    /**
     * 关阀IC卡地址(远程关闭时为0)
     */
    private String clIcCardAddr;
 
    /**
     * 关阀IC卡编号(17位数字)
     */
    private String clIcCardNo;
 
    /**
     * 关阀订单号(16位数字)
     */
    private String clOrderNo;
 
    /**
     * 开始时间(分时日月)
     */
    private Date startDt;
 
    /**
     * 结束时间(分时日月)
     */
    private Date endDt;
 
    /**
     * 水表累计流量
     */
    private Double clWaterTotalAmount;
 
    /**
     * 电表累计电量
     */
    private Double clEleTotalAmount;
 
    /**
     * 用户剩余金额
     */
    private Double clMoneyRemainUser;
 
    /**
     * 用户剩余水量
     */
    private Double clWaterRemainUser;
 
    /**
     * 本次使用电量
     */
    private Double thisEle;
 
    /**
     * 本次使用水量
     */
    private Double thisWater;
 
    /**
     * 本次使用金额
     */
    private Double thisMoney;
 
    /**
     * 本次使用时间长
     */
    private Integer thisDuration;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getControllerId() {
        return controllerId;
    }
 
    public void setControllerId(Long controllerId) {
        this.controllerId = controllerId;
    }
 
    public Long getIntakeId() {
        return intakeId;
    }
 
    public void setIntakeId(Long intakeId) {
        this.intakeId = intakeId;
    }
 
    public String getRtuAddr() {
        return rtuAddr;
    }
 
    public void setRtuAddr(String rtuAddr) {
        this.rtuAddr = rtuAddr;
    }
 
    public Date getOpDt() {
        return opDt;
    }
 
    public void setOpDt(Date opDt) {
        this.opDt = opDt;
    }
 
    public Date getOpRtuDt() {
        return opRtuDt;
    }
 
    public void setOpRtuDt(Date opRtuDt) {
        this.opRtuDt = opRtuDt;
    }
 
    public String getOpIcCardAddr() {
        return opIcCardAddr;
    }
 
    public void setOpIcCardAddr(String opIcCardAddr) {
        this.opIcCardAddr = opIcCardAddr;
    }
 
    public String getOpIcCardNo() {
        return opIcCardNo;
    }
 
    public void setOpIcCardNo(String opIcCardNo) {
        this.opIcCardNo = opIcCardNo;
    }
 
    public String getOpOrderNo() {
        return opOrderNo;
    }
 
    public void setOpOrderNo(String opOrderNo) {
        this.opOrderNo = opOrderNo;
    }
 
    public Date getOpenDt() {
        return openDt;
    }
 
    public void setOpenDt(Date openDt) {
        this.openDt = openDt;
    }
 
    public Double getOpWaterTotalAmount() {
        return opWaterTotalAmount;
    }
 
    public void setOpWaterTotalAmount(Double opWaterTotalAmount) {
        this.opWaterTotalAmount = opWaterTotalAmount;
    }
 
    public Double getOpEleTotalAmount() {
        return opEleTotalAmount;
    }
 
    public void setOpEleTotalAmount(Double opEleTotalAmount) {
        this.opEleTotalAmount = opEleTotalAmount;
    }
 
    public Double getOpMoneyRemainUser() {
        return opMoneyRemainUser;
    }
 
    public void setOpMoneyRemainUser(Double opMoneyRemainUser) {
        this.opMoneyRemainUser = opMoneyRemainUser;
    }
 
    public Double getOpWaterRemainUser() {
        return opWaterRemainUser;
    }
 
    public void setOpWaterRemainUser(Double opWaterRemainUser) {
        this.opWaterRemainUser = opWaterRemainUser;
    }
 
    public String getOpType() {
        return opType;
    }
 
    public void setOpType(String opType) {
        this.opType = opType;
    }
 
    public String getClIcCardAddr() {
        return clIcCardAddr;
    }
 
    public void setClIcCardAddr(String clIcCardAddr) {
        this.clIcCardAddr = clIcCardAddr;
    }
 
    public String getClIcCardNo() {
        return clIcCardNo;
    }
 
    public void setClIcCardNo(String clIcCardNo) {
        this.clIcCardNo = clIcCardNo;
    }
 
    public String getClOrderNo() {
        return clOrderNo;
    }
 
    public void setClOrderNo(String clOrderNo) {
        this.clOrderNo = clOrderNo;
    }
 
    public Date getStartDt() {
        return startDt;
    }
 
    public void setStartDt(Date startDt) {
        this.startDt = startDt;
    }
 
    public Date getEndDt() {
        return endDt;
    }
 
    public void setEndDt(Date endDt) {
        this.endDt = endDt;
    }
 
    public Double getClWaterTotalAmount() {
        return clWaterTotalAmount;
    }
 
    public void setClWaterTotalAmount(Double clWaterTotalAmount) {
        this.clWaterTotalAmount = clWaterTotalAmount;
    }
 
    public Double getClEleTotalAmount() {
        return clEleTotalAmount;
    }
 
    public void setClEleTotalAmount(Double clEleTotalAmount) {
        this.clEleTotalAmount = clEleTotalAmount;
    }
 
    public Double getClMoneyRemainUser() {
        return clMoneyRemainUser;
    }
 
    public void setClMoneyRemainUser(Double clMoneyRemainUser) {
        this.clMoneyRemainUser = clMoneyRemainUser;
    }
 
    public Double getClWaterRemainUser() {
        return clWaterRemainUser;
    }
 
    public void setClWaterRemainUser(Double clWaterRemainUser) {
        this.clWaterRemainUser = clWaterRemainUser;
    }
 
    public Double getThisEle() {
        return thisEle;
    }
 
    public void setThisEle(Double thisEle) {
        this.thisEle = thisEle;
    }
 
    public Double getThisWater() {
        return thisWater;
    }
 
    public void setThisWater(Double thisWater) {
        this.thisWater = thisWater;
    }
 
    public Double getThisMoney() {
        return thisMoney;
    }
 
    public void setThisMoney(Double thisMoney) {
        this.thisMoney = thisMoney;
    }
 
    public Integer getThisDuration() {
        return thisDuration;
    }
 
    public void setThisDuration(Integer thisDuration) {
        this.thisDuration = thisDuration;
    }
}