地质所 沉降监测网建设项目
chenhuan
2024-05-16 0fdd42e318f51f9e3c6581473416af1cca69877f
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
package com.javaweb.geo.vo;
 
import com.javaweb.geo.domain.Project;
 
/**
 * @author mzy-cxy
 */
public class ExceptionProjectVo extends Project {
 
    // 异常数量
    private Integer exceptionNum;
 
    // 勘探点编号
    private String holeCodes;
 
    // 异常时间
    private String time;
 
    public Integer getExceptionNum() {
        return exceptionNum;
    }
 
    public void setExceptionNum(Integer exceptionNum) {
        this.exceptionNum = exceptionNum;
    }
 
    public String getHoleCodes() {
        return holeCodes;
    }
 
    public void setHoleCodes(String holeCodes) {
        this.holeCodes = holeCodes;
    }
 
    public String getTime() {
        return time;
    }
 
    public void setTime(String time) {
        this.time = time;
    }
 
 
}