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; /** * Dlg100wVega * @author WWW */ @Data @AllArgsConstructor @TableName("bd.dlg_100w_vega") public class Dlg100wVegaEntity implements Serializable { private static final long serialVersionUID = 598911685682326400L; @TableId(type = IdType.AUTO) private Integer gid; private String gb; private String type; private String maptile; private String eventid; @TableField(select = false) private String geom; public Dlg100wVegaEntity() { } 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 getType() { return type; } public void setType(String type) { this.type = type; } 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; } }