地质所 沉降监测网建设项目
zmk
2024-05-22 28e168f05d3eb48223e69064188c6fce786442d4
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
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;
 
 
    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;
    }
}