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;
|
|
/**
|
* Dlg1wterl
|
* @author WWW
|
*/
|
@Data
|
@AllArgsConstructor
|
@TableName("bs.dlg_1w_terl")
|
@EqualsAndHashCode(callSuper = false)
|
public class Dlg1wterlEntity extends BaseGeoEntity {
|
private static final long serialVersionUID = 168896097768515392L;
|
|
private String maptile;
|
|
private String gb;
|
|
private BigDecimal elev;
|
|
public Dlg1wterlEntity() {
|
}
|
|
public String getMaptile() {
|
return maptile;
|
}
|
|
public void setMaptile(String maptile) {
|
this.maptile = maptile;
|
}
|
|
public String getGb() {
|
return gb;
|
}
|
|
public void setGb(String gb) {
|
this.gb = gb;
|
}
|
|
public BigDecimal getElev() {
|
return elev;
|
}
|
|
public void setElev(BigDecimal elev) {
|
this.elev = elev;
|
}
|
}
|