package com.lf.server.entity.bd;
|
|
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;
|
|
/**
|
* Dlg100wbrgl
|
* @author WWW
|
*/
|
@Data
|
@AllArgsConstructor
|
@TableName("bd.dlg_100w_brgl")
|
@EqualsAndHashCode(callSuper = false)
|
public class Dlg100wbrglEntity extends BaseGeoEntity {
|
private static final long serialVersionUID = 817348371174814464L;
|
|
private String gb;
|
|
private String maptile;
|
|
public Dlg100wbrglEntity() {
|
}
|
|
public String getGb() {
|
return gb;
|
}
|
|
public void setGb(String gb) {
|
this.gb = gb;
|
}
|
|
public String getMaptile() {
|
return maptile;
|
}
|
|
public void setMaptile(String maptile) {
|
this.maptile = maptile;
|
}
|
}
|