package com.lf.server.entity.bs;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.lf.server.entity.all.BaseGeoEntity;
|
import lombok.*;
|
|
import java.math.BigDecimal;
|
import java.sql.Timestamp;
|
import java.time.LocalDate;
|
|
/**
|
* Dlg5wcptp
|
* @author WWW
|
*/
|
@Data
|
@AllArgsConstructor
|
@TableName("bs.dlg_5w_cptp")
|
@EqualsAndHashCode(callSuper = false)
|
public class Dlg5wcptpEntity extends BaseGeoEntity {
|
private static final long serialVersionUID = 332516384931521664L;
|
|
private String gb;
|
|
private String cno;
|
|
private String name;
|
|
private String tegr;
|
|
private BigDecimal elev;
|
|
private String type;
|
|
private String maptile;
|
|
public Dlg5wcptpEntity() {
|
}
|
|
public String getGb() {
|
return gb;
|
}
|
|
public void setGb(String gb) {
|
this.gb = gb;
|
}
|
|
public String getCno() {
|
return cno;
|
}
|
|
public void setCno(String cno) {
|
this.cno = cno;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getTegr() {
|
return tegr;
|
}
|
|
public void setTegr(String tegr) {
|
this.tegr = tegr;
|
}
|
|
public BigDecimal getElev() {
|
return elev;
|
}
|
|
public void setElev(BigDecimal elev) {
|
this.elev = elev;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public String getMaptile() {
|
return maptile;
|
}
|
|
public void setMaptile(String maptile) {
|
this.maptile = maptile;
|
}
|
}
|