管灌系统巡查员智能手机App
zuoxiao
2025-01-18 b3e7f379e72111f55a28c302804702ee7c66bfa2
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
package com.dayu.pipirrapp.bean.db;
 
import androidx.room.Entity;
import androidx.room.PrimaryKey;
 
import com.dayu.pipirrapp.bean.net.PipeNetworkResult;
 
import java.util.List;
 
/**
 * PipeNetworkBean -
 *
 * @author zuoxiao
 * @version 1.0
 * @since 2025-01-17
 */
@Entity
public class PipeNetworkBean {
    @PrimaryKey(autoGenerate = true)
    public long id;
 
    String type;
    String networkId;
    List<PipeNetworkResult.Data> data;
 
 
    public class Data {
        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;
            }
        }
 
        List<PipeNetworkResult.Data.Coordinate> coordinates;
        String type;
        String networkId;
 
        public List<PipeNetworkResult.Data.Coordinate> getCoordinates() {
            return coordinates;
        }
 
        public void setCoordinates(List<PipeNetworkResult.Data.Coordinate> coordinates) {
            this.coordinates = coordinates;
        }
 
        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 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 List<PipeNetworkResult.Data> getData() {
        return data;
    }
 
    public void setData(List<PipeNetworkResult.Data> data) {
        this.data = data;
    }
 
 
}