package com.lf.server.entity.bd;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.*;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.sql.Timestamp;
|
|
/**
|
* Dlg100wHfcl
|
* @author WWW
|
*/
|
@Data
|
@AllArgsConstructor
|
@TableName("bd.dlg_100w_hfcl")
|
public class Dlg100wHfclEntity implements Serializable {
|
private static final long serialVersionUID = 794096425545446784L;
|
|
@TableId(type = IdType.AUTO)
|
private Integer gid;
|
|
private String gb;
|
|
private String name;
|
|
private String maptile;
|
|
private String eventid;
|
|
@TableField(select = false)
|
private String geom;
|
|
public Dlg100wHfclEntity() {
|
}
|
|
public Integer getGid() {
|
return gid;
|
}
|
|
public void setGid(Integer gid) {
|
this.gid = gid;
|
}
|
|
public String getGb() {
|
return gb;
|
}
|
|
public void setGb(String gb) {
|
this.gb = gb;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getMaptile() {
|
return maptile;
|
}
|
|
public void setMaptile(String maptile) {
|
this.maptile = maptile;
|
}
|
|
public String getEventid() {
|
return eventid;
|
}
|
|
public void setEventid(String eventid) {
|
this.eventid = eventid;
|
}
|
|
public String getGeom() {
|
return geom;
|
}
|
|
public void setGeom(String geom) {
|
this.geom = geom;
|
}
|
}
|