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;
|
|
/**
|
* Dlg25wLrrl
|
* @author WWW
|
*/
|
@Data
|
@AllArgsConstructor
|
@TableName("bd.dlg_25w_lrrl")
|
public class Dlg25wLrrlEntity implements Serializable {
|
private static final long serialVersionUID = 327909621562766656L;
|
|
@TableId(type = IdType.AUTO)
|
private Integer gid;
|
|
@TableField(select = false)
|
private BigDecimal shapeLeng;
|
|
private String name;
|
|
private String rn;
|
|
private String gb;
|
|
private String bsm;
|
|
private String unit;
|
|
@TableField(select = false)
|
private String geom;
|
|
public Dlg25wLrrlEntity() {
|
}
|
|
public Integer getGid() {
|
return gid;
|
}
|
|
public void setGid(Integer gid) {
|
this.gid = gid;
|
}
|
|
public BigDecimal getShapeLeng() {
|
return shapeLeng;
|
}
|
|
public void setShapeLeng(BigDecimal shapeLeng) {
|
this.shapeLeng = shapeLeng;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getRn() {
|
return rn;
|
}
|
|
public void setRn(String rn) {
|
this.rn = rn;
|
}
|
|
public String getGb() {
|
return gb;
|
}
|
|
public void setGb(String gb) {
|
this.gb = gb;
|
}
|
|
public String getBsm() {
|
return bsm;
|
}
|
|
public void setBsm(String bsm) {
|
this.bsm = bsm;
|
}
|
|
public String getUnit() {
|
return unit;
|
}
|
|
public void setUnit(String unit) {
|
this.unit = unit;
|
}
|
|
public String getGeom() {
|
return geom;
|
}
|
|
public void setGeom(String geom) {
|
this.geom = geom;
|
}
|
}
|