地质所 沉降监测网建设项目
suerwei
2024-05-16 560e679c239af089e2ba79bdbec4bac331c01b4f
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
123
124
125
126
127
128
package com.javaweb.hydrology.domain;
 
import com.javaweb.common.core.domain.BaseEntity;
 
/**
 * 水文数据对象 js_hydrology_data
 * 
 * @author zmk
 * @date 2022-09-01
 */
public class HydrologyOriginData extends BaseEntity
{
    
    
    private static final long serialVersionUID = 1L;
 
    private String holeNum;
 
    private String year;
 
    private String layer;
    
    private Double month1;
    private Double month2;
    private Double month3;
    private Double month4;
    private Double month5;
    private Double month6;
    private Double month7;
    private Double month8;
    private Double month9;
    private Double month10;
    private Double month11;
    private Double month12;
    
    public String getHoleNum() {
        return holeNum;
    }
    public void setHoleNum(String holeNum) {
        this.holeNum = holeNum;
    }
    public String getYear() {
        return year;
    }
    public void setYear(String year) {
        this.year = year;
    }
    public String getLayer() {
        return layer;
    }
    public void setLayer(String layer) {
        this.layer = layer;
    }
    public Double getMonth1() {
        return month1;
    }
    public void setMonth1(Double month1) {
        this.month1 = month1;
    }
    public Double getMonth2() {
        return month2;
    }
    public void setMonth2(Double month2) {
        this.month2 = month2;
    }
    public Double getMonth3() {
        return month3;
    }
    public void setMonth3(Double month3) {
        this.month3 = month3;
    }
    public Double getMonth4() {
        return month4;
    }
    public void setMonth4(Double month4) {
        this.month4 = month4;
    }
    public Double getMonth5() {
        return month5;
    }
    public void setMonth5(Double month5) {
        this.month5 = month5;
    }
    public Double getMonth6() {
        return month6;
    }
    public void setMonth6(Double month6) {
        this.month6 = month6;
    }
    public Double getMonth7() {
        return month7;
    }
    public void setMonth7(Double month7) {
        this.month7 = month7;
    }
    public Double getMonth8() {
        return month8;
    }
    public void setMonth8(Double month8) {
        this.month8 = month8;
    }
    public Double getMonth9() {
        return month9;
    }
    public void setMonth9(Double month9) {
        this.month9 = month9;
    }
    public Double getMonth10() {
        return month10;
    }
    public void setMonth10(Double month10) {
        this.month10 = month10;
    }
    public Double getMonth11() {
        return month11;
    }
    public void setMonth11(Double month11) {
        this.month11 = month11;
    }
    public Double getMonth12() {
        return month12;
    }
    public void setMonth12(Double month12) {
        this.month12 = month12;
    }
 
   
}