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;
|
}
|
}
|