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;
|
|
/**
|
* 地名地址
|
* @author WWW
|
*/
|
@Data
|
@AllArgsConstructor
|
@NoArgsConstructor
|
@TableName("bd.dlg_agnp")
|
public class DlgAgnp implements Serializable {
|
private static final long serialVersionUID = 7302992218530584319L;
|
|
@TableId(type = IdType.AUTO)
|
private int gid;
|
|
private String gb;
|
|
private String name;
|
|
@TableField(select = false)
|
private String geom;
|
|
public int getGid() {
|
return gid;
|
}
|
|
public void setGid(int 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 getGeom() {
|
return geom;
|
}
|
|
public void setGeom(String geom) {
|
this.geom = geom;
|
}
|
}
|