管灌系统巡查员智能手机App
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
package com.dayu.pipirrapp.bean.net;
 
import java.util.List;
 
/**
 * PipeNetworkResult - 管网实例
 *
 * @author zuoxiao
 * @version 1.0
 * @since 2025-01-17
 */
public class PipeNetworkResult {
    String type;
    String networkId;
    Data data;
 
 
    public static class Data {
        List<Coordinate> coordinates;
        String type;
        public class Coordinate {
            String lat;
            String lng;
 
            public String getLat() {
                return lat;
            }
 
            public void setLat(String lat) {
                this.lat = lat;
            }
 
            public String getLng() {
                return lng;
            }
 
            public void setLng(String lng) {
                this.lng = lng;
            }
        }
 
 
 
 
        public List<Coordinate> getCoordinates() {
            return coordinates;
        }
 
        public void setCoordinates(List<Coordinate> coordinates) {
            this.coordinates = coordinates;
        }
 
        public String getType() {
            return type;
        }
 
        public void setType(String type) {
            this.type = type;
        }
 
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public String getNetworkId() {
        return networkId;
    }
 
    public void setNetworkId(String networkId) {
        this.networkId = networkId;
    }
 
    public Data getData() {
        return data;
    }
 
    public void setData(Data data) {
        this.data = data;
    }
}