管灌系统巡查员智能手机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
package com.dayu.pipirrapp.bean.db;
 
import java.util.List;
 
/**
 * PipNetWorkDataBean -
 *
 * @author zuoxiao
 * @version 1.0
 * @since 2025-02-11
 */
public class PipeNetWorkDataBean {
    List<PipeNetworkDataCoordinateBean> coordinates;
    String type;
 
 
 
 
    public List<PipeNetworkDataCoordinateBean> getCoordinates() {
        return coordinates;
    }
 
    public void setCoordinates(List<PipeNetworkDataCoordinateBean> coordinates) {
        this.coordinates = coordinates;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
}