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;
|
|
/**
|
* Lunarimplocations180
|
* @author WWW
|
*/
|
@Data
|
@AllArgsConstructor
|
@TableName("mn.lunar_imp_locations_180")
|
@EqualsAndHashCode(callSuper = false)
|
@SuppressWarnings("AlibabaLowerCamelCaseVariableNaming")
|
public class Lunarimplocations180Entity extends BaseGeoEntity {
|
private static final long serialVersionUID = 544524195857590144L;
|
|
private String name;
|
|
private BigDecimal length;
|
|
private BigDecimal lat;
|
|
private BigDecimal lon;
|
|
private String host_mare;
|
|
private String geo_contex;
|
|
private String grade;
|
|
private String datastatus;
|
|
private String remarks;
|
|
private String version;
|
|
private String datastage;
|
|
public Lunarimplocations180Entity() {
|
}
|
|
public String getname() {
|
return name;
|
}
|
|
public void setname(String name) {
|
this.name = name;
|
}
|
|
public BigDecimal getlength() {
|
return length;
|
}
|
|
public void setlength(BigDecimal length) {
|
this.length = length;
|
}
|
|
public BigDecimal getlat() {
|
return lat;
|
}
|
|
public void setlat(BigDecimal lat) {
|
this.lat = lat;
|
}
|
|
public BigDecimal getlon() {
|
return lon;
|
}
|
|
public void setlon(BigDecimal lon) {
|
this.lon = lon;
|
}
|
|
public String gethost_mare() {
|
return host_mare;
|
}
|
|
public void sethost_mare(String host_mare) {
|
this.host_mare = host_mare;
|
}
|
|
public String getgeo_contex() {
|
return geo_contex;
|
}
|
|
public void setgeo_contex(String geo_contex) {
|
this.geo_contex = geo_contex;
|
}
|
|
public String getgrade() {
|
return grade;
|
}
|
|
public void setgrade(String grade) {
|
this.grade = grade;
|
}
|
|
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;
|
}
|
}
|