地质所 沉降监测网建设项目
chenhuan
2024-06-24 9a52c9f6d5d824c367e1cc0c5d07f0cf0cb8a428
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
package com.javaweb.geo.vo;
 
/**
 * 场地进度 首页
 */
public class ProjectProcessVO {
 
    private String ids;
    private  Integer ranking;
    private String station;
    private Double value;
    private String status;
 
    private Double lng;
    private Double lat;
 
    public String getIds() {
        return ids;
    }
 
    public void setIds(String ids) {
        this.ids = ids;
    }
 
    public Double getLng() {
        return lng;
    }
 
    public void setLng(Double lng) {
        this.lng = lng;
    }
 
    public Double getLat() {
        return lat;
    }
 
    public void setLat(Double lat) {
        this.lat = lat;
    }
 
    public Integer getRanking() {
        return ranking;
    }
 
    public void setRanking(Integer ranking) {
        this.ranking = ranking;
    }
 
    public String getStation() {
        return station;
    }
 
    public void setStation(String station) {
        this.station = station;
    }
 
    public Double getValue() {
        return value;
    }
 
    public void setValue(Double value) {
        this.value = value;
    }
 
    public String getStatus() {
        return status;
    }
 
    public void setStatus(String status) {
        this.status = status;
    }
}