package com.yssh.entity;
|
|
import lombok.Data;
|
import lombok.ToString;
|
|
@Data
|
@ToString
|
public class Stratum {
|
private Long id;
|
private String expSiteNumber;
|
private Integer primaryLayerNumber;
|
private Integer sublayerNumber;
|
private String geologicalEra;
|
private String geologicalGenesis;
|
private Double layerDepth;
|
private String geotechnicalName;
|
private String geotechnicalCategory;
|
private String description;
|
|
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 Integer getPrimaryLayerNumber() {
|
return primaryLayerNumber;
|
}
|
|
public void setPrimaryLayerNumber(Integer primaryLayerNumber) {
|
this.primaryLayerNumber = primaryLayerNumber;
|
}
|
|
public Integer getSublayerNumber() {
|
return sublayerNumber;
|
}
|
|
public void setSublayerNumber(Integer sublayerNumber) {
|
this.sublayerNumber = sublayerNumber;
|
}
|
|
public String getGeologicalEra() {
|
return geologicalEra;
|
}
|
|
public void setGeologicalEra(String geologicalEra) {
|
this.geologicalEra = geologicalEra;
|
}
|
|
public String getGeologicalGenesis() {
|
return geologicalGenesis;
|
}
|
|
public void setGeologicalGenesis(String geologicalGenesis) {
|
this.geologicalGenesis = geologicalGenesis;
|
}
|
|
public Double getLayerDepth() {
|
return layerDepth;
|
}
|
|
public void setLayerDepth(Double layerDepth) {
|
this.layerDepth = layerDepth;
|
}
|
|
public String getGeotechnicalName() {
|
return geotechnicalName;
|
}
|
|
public void setGeotechnicalName(String geotechnicalName) {
|
this.geotechnicalName = geotechnicalName;
|
}
|
|
public String getGeotechnicalCategory() {
|
return geotechnicalCategory;
|
}
|
|
public void setGeotechnicalCategory(String geotechnicalCategory) {
|
this.geotechnicalCategory = geotechnicalCategory;
|
}
|
|
public String getDescription() {
|
return description;
|
}
|
|
public void setDescription(String description) {
|
this.description = description;
|
}
|
}
|