燕山石化溯源三维电子沙盘-【后端】-服务
11
13693261870
2024-11-08 2b32f3b7e35272a584ecbbb91b7509ba20f837fa
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
package com.yssh.entity;
 
import java.util.Date;
 
import lombok.Data;
 
@Data
public class ExpPoint {
    private Long id;
    private String expSiteNumber;
    private String expPointType;
    private double ordinateX;
    private double abscissaY;
    private double elevation;
    private double explorationDepth;
    private Date expStartDate;
    private Date expEndDate;
    private double groundwaterDepth;
    private String waveSpeedInstrument;
    private String waveVelocityMethod;
    private String waveVelocityExcitationDistance;
    private String waterDepth;
    private int isParticipate;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getExpSiteNumber() {
        return expSiteNumber;
    }
 
    public void setExpSiteNumber(String expSiteNumber) {
        this.expSiteNumber = expSiteNumber;
    }
 
    public String getExpPointType() {
        return expPointType;
    }
 
    public void setExpPointType(String expPointType) {
        this.expPointType = expPointType;
    }
 
    public double getOrdinateX() {
        return ordinateX;
    }
 
    public void setOrdinateX(double ordinateX) {
        this.ordinateX = ordinateX;
    }
 
    public double getAbscissaY() {
        return abscissaY;
    }
 
    public void setAbscissaY(double abscissaY) {
        this.abscissaY = abscissaY;
    }
 
    public double getElevation() {
        return elevation;
    }
 
    public void setElevation(double elevation) {
        this.elevation = elevation;
    }
 
    public double getExplorationDepth() {
        return explorationDepth;
    }
 
    public void setExplorationDepth(double explorationDepth) {
        this.explorationDepth = explorationDepth;
    }
 
    public Date getExpStartDate() {
        return expStartDate;
    }
 
    public void setExpStartDate(Date expStartDate) {
        this.expStartDate = expStartDate;
    }
 
    public Date getExpEndDate() {
        return expEndDate;
    }
 
    public void setExpEndDate(Date expEndDate) {
        this.expEndDate = expEndDate;
    }
 
    public double getGroundwaterDepth() {
        return groundwaterDepth;
    }
 
    public void setGroundwaterDepth(double groundwaterDepth) {
        this.groundwaterDepth = groundwaterDepth;
    }
 
    public String getWaveSpeedInstrument() {
        return waveSpeedInstrument;
    }
 
    public void setWaveSpeedInstrument(String waveSpeedInstrument) {
        this.waveSpeedInstrument = waveSpeedInstrument;
    }
 
    public String getWaveVelocityMethod() {
        return waveVelocityMethod;
    }
 
    public void setWaveVelocityMethod(String waveVelocityMethod) {
        this.waveVelocityMethod = waveVelocityMethod;
    }
 
    public String getWaveVelocityExcitationDistance() {
        return waveVelocityExcitationDistance;
    }
 
    public void setWaveVelocityExcitationDistance(String waveVelocityExcitationDistance) {
        this.waveVelocityExcitationDistance = waveVelocityExcitationDistance;
    }
 
    public String getWaterDepth() {
        return waterDepth;
    }
 
    public void setWaterDepth(String waterDepth) {
        this.waterDepth = waterDepth;
    }
 
    public int getIsParticipate() {
        return isParticipate;
    }
 
    public void setIsParticipate(int isParticipate) {
        this.isParticipate = isParticipate;
    }
}