地质所 沉降监测网建设项目
zmk
2024-05-28 3f1889e77f861a8284770c85bdd83204f6863f39
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
package com.javaweb.geo.vo;
 
/**
 * @author mzy-cxy
 */
public class IndexVo {
    /**
     * 未协调
     */
    private Integer projectStatus0;
 
    /**
     * 已协调
     */
    private Integer projectStatus1;
 
    /**
     * 施工中
     */
    private Integer projectStatus2;
 
    /**
     * 总进尺
     */
    private Double footageCount;
 
    /**
     * 已完成进尺
     */
    private Double footageCplCount;
 
    /**
     * 资料
     */
    private Long fileCount;
 
    private Integer sgCount;
    private Integer aqCount;
    private Integer zlCount;
 
    private Integer cameraCount;
 
    public Integer getSgCount() {
        return sgCount;
    }
 
    public void setSgCount(Integer sgCount) {
        this.sgCount = sgCount;
    }
 
    public Integer getAqCount() {
        return aqCount;
    }
 
    public void setAqCount(Integer aqCount) {
        this.aqCount = aqCount;
    }
 
    public Integer getZlCount() {
        return zlCount;
    }
 
    public void setZlCount(Integer zlCount) {
        this.zlCount = zlCount;
    }
 
    public Integer getCameraCount() {
        return cameraCount;
    }
 
    public void setCameraCount(Integer cameraCount) {
        this.cameraCount = cameraCount;
    }
 
    public Integer getProjectStatus0() {
        return projectStatus0;
    }
 
    public void setProjectStatus0(Integer projectStatus0) {
        this.projectStatus0 = projectStatus0;
    }
 
    public Integer getProjectStatus1() {
        return projectStatus1;
    }
 
    public void setProjectStatus1(Integer projectStatus1) {
        this.projectStatus1 = projectStatus1;
    }
 
    public Integer getProjectStatus2() {
        return projectStatus2;
    }
 
    public void setProjectStatus2(Integer projectStatus2) {
        this.projectStatus2 = projectStatus2;
    }
 
    public Double getFootageCount() {
        return footageCount;
    }
 
    public void setFootageCount(Double footageCount) {
        this.footageCount = footageCount;
    }
 
    public Double getFootageCplCount() {
        return footageCplCount;
    }
 
    public void setFootageCplCount(Double footageCplCount) {
        this.footageCplCount = footageCplCount;
    }
 
    public Long getFileCount() {
        return fileCount;
    }
 
    public void setFileCount(Long fileCount) {
        this.fileCount = fileCount;
    }
}