package com.lf.server.entity.bs;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.lf.server.entity.all.BaseEntity;
|
import lombok.*;
|
|
import java.math.BigDecimal;
|
import java.sql.Timestamp;
|
import java.time.LocalDate;
|
|
/**
|
* Sexplorationpointstratum
|
* @author WWW
|
*/
|
@Data
|
@AllArgsConstructor
|
@TableName("bs.s_explorationpointstratum")
|
@EqualsAndHashCode(callSuper = false)
|
public class SexplorationpointstratumEntity extends BaseEntity {
|
private static final long serialVersionUID = 757752290348406912L;
|
|
private String pipename;
|
|
private String projname;
|
|
private String exppointid;
|
|
private String mainno;
|
|
private String subno;
|
|
private String geoage;
|
|
private String geoorigin;
|
|
private Double botdepth;
|
|
private Double elev;
|
|
private String geoname;
|
|
private String geotype;
|
|
private String describe;
|
|
private String belongs;
|
|
private String belongsid;
|
|
private String datastatus;
|
|
private String remarks;
|
|
private String version;
|
|
private String datastage;
|
|
public SexplorationpointstratumEntity() {
|
}
|
|
public String getPipename() {
|
return pipename;
|
}
|
|
public void setPipename(String pipename) {
|
this.pipename = pipename;
|
}
|
|
public String getProjname() {
|
return projname;
|
}
|
|
public void setProjname(String projname) {
|
this.projname = projname;
|
}
|
|
public String getExppointid() {
|
return exppointid;
|
}
|
|
public void setExppointid(String exppointid) {
|
this.exppointid = exppointid;
|
}
|
|
public String getMainno() {
|
return mainno;
|
}
|
|
public void setMainno(String mainno) {
|
this.mainno = mainno;
|
}
|
|
public String getSubno() {
|
return subno;
|
}
|
|
public void setSubno(String subno) {
|
this.subno = subno;
|
}
|
|
public String getGeoage() {
|
return geoage;
|
}
|
|
public void setGeoage(String geoage) {
|
this.geoage = geoage;
|
}
|
|
public String getGeoorigin() {
|
return geoorigin;
|
}
|
|
public void setGeoorigin(String geoorigin) {
|
this.geoorigin = geoorigin;
|
}
|
|
public Double getBotdepth() {
|
return botdepth;
|
}
|
|
public void setBotdepth(Double botdepth) {
|
this.botdepth = botdepth;
|
}
|
|
public Double getElev() {
|
return elev;
|
}
|
|
public void setElev(Double elev) {
|
this.elev = elev;
|
}
|
|
public String getGeoname() {
|
return geoname;
|
}
|
|
public void setGeoname(String geoname) {
|
this.geoname = geoname;
|
}
|
|
public String getGeotype() {
|
return geotype;
|
}
|
|
public void setGeotype(String geotype) {
|
this.geotype = geotype;
|
}
|
|
public String getDescribe() {
|
return describe;
|
}
|
|
public void setDescribe(String describe) {
|
this.describe = describe;
|
}
|
|
public String getBelongs() {
|
return belongs;
|
}
|
|
public void setBelongs(String belongs) {
|
this.belongs = belongs;
|
}
|
|
public String getBelongsid() {
|
return belongsid;
|
}
|
|
public void setBelongsid(String belongsid) {
|
this.belongsid = belongsid;
|
}
|
|
public String getDatastatus() {
|
return datastatus;
|
}
|
|
public void setDatastatus(String datastatus) {
|
this.datastatus = datastatus;
|
}
|
|
public String getRemarks() {
|
return remarks;
|
}
|
|
public void setRemarks(String remarks) {
|
this.remarks = remarks;
|
}
|
|
public String getVersion() {
|
return version;
|
}
|
|
public void setVersion(String version) {
|
this.version = version;
|
}
|
|
public String getDatastage() {
|
return datastage;
|
}
|
|
public void setDatastage(String datastage) {
|
this.datastage = datastage;
|
}
|
}
|