| 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
 | | package com.dy.pipIrrGlobal.voAllRound; |  |   |  | import com.alibaba.fastjson2.annotation.JSONField; |  | import com.alibaba.fastjson2.writer.ObjectWriterImplToString; |  | import com.fasterxml.jackson.annotation.JsonPropertyOrder; |  | import lombok.Data; |  |   |  | /** |  |  * @Author: liurunyu |  |  * @Date: 2025/1/14 16:01 |  |  * @Description |  |  */ |  |   |  | @Data |  | @JsonPropertyOrder({"id", "num", "lng","lat", "address", "blockName", "rtuAddr"}) |  | public class VoArIntakeBase { |  |     private static final long serialVersionUID = 202501141601001L; |  |   |  |     @JSONField(serializeUsing= ObjectWriterImplToString.class) |  |     public Long id; |  |   |  |     /** |  |      * 编号 |  |      */ |  |     public String num; |  |   |  |     /** |  |      * 经度 |  |      */ |  |     public Double lng; |  |   |  |     /** |  |      * 纬度 |  |      */ |  |     public Double lat; |  |   |  |     /** |  |      * 地址(县+镇+村) |  |      */ |  |     public String address ; |  |   |  |     /** |  |      * 片区 |  |      */ |  |     public String blockName; |  |   |  |     /** |  |      * 控制器地址 |  |      */ |  |     public String rtuAddr ; |  |   |  | } | 
 |