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
| package com.dy.pipIrrGlobal.voSpecial;
|
| import com.alibaba.fastjson2.annotation.JSONField;
| import com.alibaba.fastjson2.writer.ObjectWriterImplToString;
| import com.fasterxml.jackson.annotation.JsonFormat;
| import com.fasterxml.jackson.annotation.JsonPropertyOrder;
| import lombok.Data;
|
| import java.util.Date;
|
| /**
| * @Author: liurunyu
| * @Date: 2025/2/7 14:11
| * @Description
| */
|
| @Data
| @JsonPropertyOrder({"id",
| "intakeId",
| "clientId",
| "intakeNum",
| "intakeLng",
| "intakeLat",
| "clientName",
| "clientNum",
| "openDt",
| "openType",
| "openTotalAmount",
| "openRemainMoney",
| "closeDt",
| "closeType",
| "closeTotalAmount",
| "closeRemainMoney",
| "thisAmount",
| "thisMoney",
| "thisTime"
| })
| public class VoSteal {
| private static final long serialVersionUID = 202502071422001L;
| /**
| * 数据记录id(开关阀记录)
| */
| @JSONField(serializeUsing= ObjectWriterImplToString.class)
| public Long id ;
|
| /**
| * 取水口ID
| */
| @JSONField(serializeUsing= ObjectWriterImplToString.class)
| public Long intakeId;
|
| /**
| * 农户ID
| */
| @JSONField(serializeUsing= ObjectWriterImplToString.class)
| public Long clientId;
| /**
| * 取水口编号
| */
| public String intakeNum;
| /**
| * 取水口经度
| */
| public Double intakeLng;
| /**
| * 取水口纬度
| */
| public Double intakeLat;
|
| /**
| * 农户姓名
| */
| public String clientName;
|
| /**
| * 农户编号
| */
| public String clientNum;
|
| /**
| * 开阀时间
| */
| @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
| public Date openDt;
| /**
| * 开阀类型
| */
| @JSONField(serialize = false)
| public Byte opType;
| /**
| * 开阀类型
| */
| public String openType;
| /**
| * 开阀时累计流量(m3)
| */
| public Double openTotalAmount;
| /**
| * 开阀时剩余金额(元)
| */
| public Double openRemainMoney;
|
|
| /**
| * 关阀时间
| */
| @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
| public Date closeDt;
| /**
| * 关阀类型
| */
| @JSONField(serialize = false)
| public Byte clType;
| /**
| * 关阀类型
| */
| public String closeType;
| /**
| * 关阀时累计流量(m3)
| */
| public Double closeTotalAmount;
| /**
| * 关阀时剩余金额(元)
| */
| public Double closeRemainMoney;
|
| /**
| * 本次用水量(m3)
| */
| public Double thisAmount;
| /**
| * 本次金额(元)
| */
| public Double thisMoney;
| /**
| * 本次时长(分钟)
| */
| public Integer thisTime;
|
| }
|
|