From ed8c7a5effd0d423ce1118b680ecdca6fe732609 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期三, 02 七月 2025 16:43:13 +0800 Subject: [PATCH] Merge branch 'master' of http://192.168.11.205:9000/r/P2022036_Service --- src/main/java/com/lf/server/entity/bs/Dlg1wlrdlEntity.java | 165 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 165 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/lf/server/entity/bs/Dlg1wlrdlEntity.java b/src/main/java/com/lf/server/entity/bs/Dlg1wlrdlEntity.java new file mode 100644 index 0000000..ff149e5 --- /dev/null +++ b/src/main/java/com/lf/server/entity/bs/Dlg1wlrdlEntity.java @@ -0,0 +1,165 @@ +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; + +/** + * Dlg1wlrdl + * @author WWW + */ +@Data +@AllArgsConstructor +@TableName("bs.dlg_1w_lrdl") +@EqualsAndHashCode(callSuper = false) +public class Dlg1wlrdlEntity extends BaseGeoEntity { + private static final long serialVersionUID = 351793358731918720L; + + private String maptile; + + private String gb; + + private String rn; + + private String rdpac; + + private String rteg; + + private String material; + + private String lanes; + + private String sdtf; + + private BigDecimal width; + + private String period; + + private String type; + + private String name; + + private String classes; + + private String pinyin; + + public Dlg1wlrdlEntity() { + } + + public String getMaptile() { + return maptile; + } + + public void setMaptile(String maptile) { + this.maptile = maptile; + } + + public String getGb() { + return gb; + } + + public void setGb(String gb) { + this.gb = gb; + } + + public String getRn() { + return rn; + } + + public void setRn(String rn) { + this.rn = rn; + } + + public String getRdpac() { + return rdpac; + } + + public void setRdpac(String rdpac) { + this.rdpac = rdpac; + } + + public String getRteg() { + return rteg; + } + + public void setRteg(String rteg) { + this.rteg = rteg; + } + + public String getMaterial() { + return material; + } + + public void setMaterial(String material) { + this.material = material; + } + + public String getLanes() { + return lanes; + } + + public void setLanes(String lanes) { + this.lanes = lanes; + } + + public String getSdtf() { + return sdtf; + } + + public void setSdtf(String sdtf) { + this.sdtf = sdtf; + } + + public BigDecimal getWidth() { + return width; + } + + public void setWidth(BigDecimal width) { + this.width = width; + } + + public String getPeriod() { + return period; + } + + public void setPeriod(String period) { + this.period = period; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getClasses() { + return classes; + } + + public void setClasses(String classes) { + this.classes = classes; + } + + public String getPinyin() { + return pinyin; + } + + public void setPinyin(String pinyin) { + this.pinyin = pinyin; + } +} -- Gitblit v1.9.3