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;
|
|
/**
|
* Geoimpactbasin
|
* @author WWW
|
*/
|
@Data
|
@AllArgsConstructor
|
@TableName("mn.geo_impact_basin")
|
@EqualsAndHashCode(callSuper = false)
|
public class GeoimpactbasinEntity extends BaseGeoEntity {
|
private static final long serialVersionUID = 799637120123783680L;
|
|
private String cName;
|
|
private String eName;
|
|
private String quadrangle;
|
|
private String classes;
|
|
private String bType;
|
|
private BigDecimal diameter;
|
|
private String era;
|
|
private BigDecimal lon;
|
|
private BigDecimal lat;
|
|
private BigDecimal elevation;
|
|
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 GeoimpactbasinEntity() {
|
}
|
|
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 String getbType() {
|
return bType;
|
}
|
|
public void setbType(String bType) {
|
this.bType = bType;
|
}
|
|
public BigDecimal getDiameter() {
|
return diameter;
|
}
|
|
public void setDiameter(BigDecimal diameter) {
|
this.diameter = diameter;
|
}
|
|
public String getEra() {
|
return era;
|
}
|
|
public void setEra(String era) {
|
this.era = era;
|
}
|
|
public BigDecimal getLon() {
|
return lon;
|
}
|
|
public void setLon(BigDecimal lon) {
|
this.lon = lon;
|
}
|
|
public BigDecimal getLat() {
|
return lat;
|
}
|
|
public void setLat(BigDecimal lat) {
|
this.lat = lat;
|
}
|
|
public BigDecimal getElevation() {
|
return elevation;
|
}
|
|
public void setElevation(BigDecimal elevation) {
|
this.elevation = elevation;
|
}
|
|
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;
|
}
|
}
|