package com.terra.system.entity.mn;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.terra.system.entity.all.BaseGeoEntity;
|
import lombok.AllArgsConstructor;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import java.math.BigDecimal;
|
|
@Data
|
@AllArgsConstructor
|
@SuppressWarnings("ALL")
|
@TableName("mn.geo_shallow_fault")
|
@EqualsAndHashCode(callSuper = false)
|
public class GeoshallowfaultEntity extends BaseGeoEntity {
|
private static final long serialVersionUID = 377736424271825920L;
|
|
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 strike;
|
|
private String dipDirec;
|
|
private String dipAngle;
|
|
private String faultType;
|
|
private String mDirec;
|
|
private String tecUnit;
|
|
private String fDesc;
|
|
private String featureId;
|
|
private String featureT;
|
|
private String datastatus;
|
|
private String remarks;
|
|
private String version;
|
|
private String datastage;
|
|
public GeoshallowfaultEntity() {
|
}
|
|
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 getStrike() {
|
return strike;
|
}
|
|
public void setStrike(String strike) {
|
this.strike = strike;
|
}
|
|
public String getDipDirec() {
|
return dipDirec;
|
}
|
|
public void setDipDirec(String dipDirec) {
|
this.dipDirec = dipDirec;
|
}
|
|
public String getDipAngle() {
|
return dipAngle;
|
}
|
|
public void setDipAngle(String dipAngle) {
|
this.dipAngle = dipAngle;
|
}
|
|
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 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;
|
}
|
}
|