package com.moon.server.entity.mn;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.moon.server.entity.all.BaseGeoEntity;
|
import lombok.*;
|
|
import java.math.BigDecimal;
|
import java.sql.Timestamp;
|
import java.time.LocalDate;
|
|
/**
|
* Geocraterfloorfracture
|
* @author WWW
|
*/
|
@Data
|
@AllArgsConstructor
|
@TableName("mn.geo_crater_floor_fracture")
|
@EqualsAndHashCode(callSuper = false)
|
public class GeocraterfloorfractureEntity extends BaseGeoEntity {
|
private static final long serialVersionUID = 636016832960777344L;
|
|
private String cName;
|
|
private String eName;
|
|
private String quadrangle;
|
|
private String classes;
|
|
private BigDecimal length;
|
|
private String era;
|
|
private BigDecimal endp1Lon;
|
|
private BigDecimal endp1Lat;
|
|
private BigDecimal endp2Lon;
|
|
private BigDecimal endp2Lat;
|
|
private String faultType;
|
|
private String mDirec;
|
|
private String tecUnit;
|
|
private String fDesc;
|
|
private String featureId;
|
|
private String featuret;
|
|
private String addition;
|
|
private String datastatus;
|
|
private String remarks;
|
|
private String version;
|
|
private String datastage;
|
|
public GeocraterfloorfractureEntity() {
|
}
|
|
public String getcName() {
|
return cName;
|
}
|
|
public void setcName(String cName) {
|
this.cName = cName;
|
}
|
|
public String geteName() {
|
return eName;
|
}
|
|
public void seteName(String eName) {
|
this.eName = eName;
|
}
|
|
public String getQuadrangle() {
|
return quadrangle;
|
}
|
|
public void setQuadrangle(String quadrangle) {
|
this.quadrangle = quadrangle;
|
}
|
|
public String getClasses() {
|
return classes;
|
}
|
|
public void setClasses(String classes) {
|
this.classes = classes;
|
}
|
|
public BigDecimal getLength() {
|
return length;
|
}
|
|
public void setLength(BigDecimal length) {
|
this.length = length;
|
}
|
|
public String getEra() {
|
return era;
|
}
|
|
public void setEra(String era) {
|
this.era = era;
|
}
|
|
public BigDecimal getEndp1Lon() {
|
return endp1Lon;
|
}
|
|
public void setEndp1Lon(BigDecimal endp1Lon) {
|
this.endp1Lon = endp1Lon;
|
}
|
|
public BigDecimal getEndp1Lat() {
|
return endp1Lat;
|
}
|
|
public void setEndp1Lat(BigDecimal endp1Lat) {
|
this.endp1Lat = endp1Lat;
|
}
|
|
public BigDecimal getEndp2Lon() {
|
return endp2Lon;
|
}
|
|
public void setEndp2Lon(BigDecimal endp2Lon) {
|
this.endp2Lon = endp2Lon;
|
}
|
|
public BigDecimal getEndp2Lat() {
|
return endp2Lat;
|
}
|
|
public void setEndp2Lat(BigDecimal endp2Lat) {
|
this.endp2Lat = endp2Lat;
|
}
|
|
public String getFaultType() {
|
return faultType;
|
}
|
|
public void setFaultType(String faultType) {
|
this.faultType = faultType;
|
}
|
|
public String getmDirec() {
|
return mDirec;
|
}
|
|
public void setmDirec(String mDirec) {
|
this.mDirec = mDirec;
|
}
|
|
public String getTecUnit() {
|
return tecUnit;
|
}
|
|
public void setTecUnit(String tecUnit) {
|
this.tecUnit = tecUnit;
|
}
|
|
public String getfDesc() {
|
return fDesc;
|
}
|
|
public void setfDesc(String fDesc) {
|
this.fDesc = fDesc;
|
}
|
|
public String getFeatureId() {
|
return featureId;
|
}
|
|
public void setFeatureId(String featureId) {
|
this.featureId = featureId;
|
}
|
|
public String getFeaturet() {
|
return featuret;
|
}
|
|
public void setFeaturet(String featuret) {
|
this.featuret = featuret;
|
}
|
|
public String getAddition() {
|
return addition;
|
}
|
|
public void setAddition(String addition) {
|
this.addition = addition;
|
}
|
|
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;
|
}
|
}
|