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;
|
|
/**
|
* Lrocglobalmare180
|
* @author WWW
|
*/
|
@Data
|
@AllArgsConstructor
|
@SuppressWarnings("ALL")
|
@TableName("mn.lroc_global_mare_180")
|
@EqualsAndHashCode(callSuper = false)
|
public class Lrocglobalmare180Entity extends BaseGeoEntity {
|
private static final long serialVersionUID = 80409608353120096L;
|
|
private String mareName;
|
|
private BigDecimal perimKm;
|
|
private BigDecimal areaKm2;
|
|
private String datastatus;
|
|
private String remarks;
|
|
private String version;
|
|
private String datastage;
|
|
public Lrocglobalmare180Entity() {
|
}
|
|
public String getMareName() {
|
return mareName;
|
}
|
|
public void setMareName(String mareName) {
|
this.mareName = mareName;
|
}
|
|
public BigDecimal getPerimKm() {
|
return perimKm;
|
}
|
|
public void setPerimKm(BigDecimal perimKm) {
|
this.perimKm = perimKm;
|
}
|
|
public BigDecimal getAreaKm2() {
|
return areaKm2;
|
}
|
|
public void setAreaKm2(BigDecimal areaKm2) {
|
this.areaKm2 = areaKm2;
|
}
|
|
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;
|
}
|
}
|