liujie
2025-08-05 5367f2172a955113068d6c97cde0b78c6c85fdf8
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
package com.stylefeng.guns.modular.shunfeng.model.vo;
 
/**
 * 拓展类
 */
public class LineVo {
 
 
    private Integer cityId;
 
    private Double startLon;
 
    private Double startLat;
 
    private Double endLon;
 
    private Double endLat;
 
    private Integer siteId;
 
    private Integer siteIdEnd;
 
    private Double distance;
 
    public Integer getSiteIdEnd() {
        return siteIdEnd;
    }
 
    public void setSiteIdEnd(Integer siteIdEnd) {
        this.siteIdEnd = siteIdEnd;
    }
 
    public Integer getCityId() {
        return cityId;
    }
 
    public void setCityId(Integer cityId) {
        this.cityId = cityId;
    }
 
    public Double getStartLon() {
        return startLon;
    }
 
    public void setStartLon(Double startLon) {
        this.startLon = startLon;
    }
 
    public Double getStartLat() {
        return startLat;
    }
 
    public void setStartLat(Double startLat) {
        this.startLat = startLat;
    }
 
    public Double getEndLon() {
        return endLon;
    }
 
    public void setEndLon(Double endLon) {
        this.endLon = endLon;
    }
 
    public Double getEndLat() {
        return endLat;
    }
 
    public void setEndLat(Double endLat) {
        this.endLat = endLat;
    }
 
    public Integer getSiteId() {
        return siteId;
    }
 
    public void setSiteId(Integer siteId) {
        this.siteId = siteId;
    }
 
    public Double getDistance() {
        return distance;
    }
 
    public void setDistance(Double distance) {
        this.distance = distance;
    }
}