package com.lf.server.entity.bs;
|
|
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;
|
|
/**
|
* Dlgtralk2000
|
* @author WWW
|
*/
|
@Data
|
@AllArgsConstructor
|
@TableName("bs.dlg_tralk2000")
|
@EqualsAndHashCode(callSuper = false)
|
public class Dlgtralk2000Entity extends BaseGeoEntity {
|
private static final long serialVersionUID = 670547084263780608L;
|
|
private String usercode;
|
|
private String gb;
|
|
private String codename;
|
|
private String name;
|
|
private String encode;
|
|
private String linecode;
|
|
private String linetype;
|
|
private String number;
|
|
private String grade;
|
|
private String pavtype;
|
|
private BigDecimal roadwidth;
|
|
private BigDecimal pavwidth;
|
|
private String conroad;
|
|
private String type;
|
|
private String lanes;
|
|
private BigDecimal length;
|
|
private String purpose;
|
|
private BigDecimal carrying;
|
|
private String source;
|
|
private String maptile;
|
|
private String projname;
|
|
private String atExtend;
|
|
private String atAttrib;
|
|
private String atGeom;
|
|
private String atPacked;
|
|
public Dlgtralk2000Entity() {
|
}
|
|
public String getUsercode() {
|
return usercode;
|
}
|
|
public void setUsercode(String usercode) {
|
this.usercode = usercode;
|
}
|
|
public String getGb() {
|
return gb;
|
}
|
|
public void setGb(String gb) {
|
this.gb = gb;
|
}
|
|
public String getCodename() {
|
return codename;
|
}
|
|
public void setCodename(String codename) {
|
this.codename = codename;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getEncode() {
|
return encode;
|
}
|
|
public void setEncode(String encode) {
|
this.encode = encode;
|
}
|
|
public String getLinecode() {
|
return linecode;
|
}
|
|
public void setLinecode(String linecode) {
|
this.linecode = linecode;
|
}
|
|
public String getLinetype() {
|
return linetype;
|
}
|
|
public void setLinetype(String linetype) {
|
this.linetype = linetype;
|
}
|
|
public String getNumber() {
|
return number;
|
}
|
|
public void setNumber(String number) {
|
this.number = number;
|
}
|
|
public String getGrade() {
|
return grade;
|
}
|
|
public void setGrade(String grade) {
|
this.grade = grade;
|
}
|
|
public String getPavtype() {
|
return pavtype;
|
}
|
|
public void setPavtype(String pavtype) {
|
this.pavtype = pavtype;
|
}
|
|
public BigDecimal getRoadwidth() {
|
return roadwidth;
|
}
|
|
public void setRoadwidth(BigDecimal roadwidth) {
|
this.roadwidth = roadwidth;
|
}
|
|
public BigDecimal getPavwidth() {
|
return pavwidth;
|
}
|
|
public void setPavwidth(BigDecimal pavwidth) {
|
this.pavwidth = pavwidth;
|
}
|
|
public String getConroad() {
|
return conroad;
|
}
|
|
public void setConroad(String conroad) {
|
this.conroad = conroad;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public String getLanes() {
|
return lanes;
|
}
|
|
public void setLanes(String lanes) {
|
this.lanes = lanes;
|
}
|
|
public BigDecimal getLength() {
|
return length;
|
}
|
|
public void setLength(BigDecimal length) {
|
this.length = length;
|
}
|
|
public String getPurpose() {
|
return purpose;
|
}
|
|
public void setPurpose(String purpose) {
|
this.purpose = purpose;
|
}
|
|
public BigDecimal getCarrying() {
|
return carrying;
|
}
|
|
public void setCarrying(BigDecimal carrying) {
|
this.carrying = carrying;
|
}
|
|
public String getSource() {
|
return source;
|
}
|
|
public void setSource(String source) {
|
this.source = source;
|
}
|
|
public String getMaptile() {
|
return maptile;
|
}
|
|
public void setMaptile(String maptile) {
|
this.maptile = maptile;
|
}
|
|
public String getProjname() {
|
return projname;
|
}
|
|
public void setProjname(String projname) {
|
this.projname = projname;
|
}
|
|
public String getAtExtend() {
|
return atExtend;
|
}
|
|
public void setAtExtend(String atExtend) {
|
this.atExtend = atExtend;
|
}
|
|
public String getAtAttrib() {
|
return atAttrib;
|
}
|
|
public void setAtAttrib(String atAttrib) {
|
this.atAttrib = atAttrib;
|
}
|
|
public String getAtGeom() {
|
return atGeom;
|
}
|
|
public void setAtGeom(String atGeom) {
|
this.atGeom = atGeom;
|
}
|
|
public String getAtPacked() {
|
return atPacked;
|
}
|
|
public void setAtPacked(String atPacked) {
|
this.atPacked = atPacked;
|
}
|
}
|