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
|
@SuppressWarnings("ALL")
|
@TableName("mn.lunar_imp_locations_180")
|
@EqualsAndHashCode(callSuper = false)
|
public class Lunarimplocations180Entity extends BaseGeoEntity {
|
private static final long serialVersionUID = 377736424271825920L;
|
|
private String name;
|
|
private BigDecimal length;
|
|
private BigDecimal lat;
|
|
private BigDecimal lon;
|
|
private String hostMare;
|
|
private String geoContex;
|
|
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 getHostMare() {
|
return hostMare;
|
}
|
|
public void setHostMare(String hostMare) {
|
this.hostMare = hostMare;
|
}
|
|
public String getGeoContex() {
|
return geoContex;
|
}
|
|
public void setGeoContex(String geoContex) {
|
this.geoContex = geoContex;
|
}
|
|
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;
|
}
|
}
|