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/bd/Brg20wd09gEntity.java | 115 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 115 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/lf/server/entity/bd/Brg20wd09gEntity.java b/src/main/java/com/lf/server/entity/bd/Brg20wd09gEntity.java new file mode 100644 index 0000000..f53c568 --- /dev/null +++ b/src/main/java/com/lf/server/entity/bd/Brg20wd09gEntity.java @@ -0,0 +1,115 @@ +package com.lf.server.entity.bd; + +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; + +/** + * Brg20wd09g + * @author WWW + */ +@Data +@AllArgsConstructor +@TableName("bd.b_rg20w_d09g") +@EqualsAndHashCode(callSuper = false) +public class Brg20wd09gEntity extends BaseGeoEntity { + private static final long serialVersionUID = 73298512992122448L; + + private String chfcac; + + private String gzci; + + private String gzeha; + + private String kwbeh; + + private String gzmf; + + private String gzse; + + private String gzafj; + + private String kcc; + + private String m2sLegend; + + public Brg20wd09gEntity() { + } + + public String getChfcac() { + return chfcac; + } + + public void setChfcac(String chfcac) { + this.chfcac = chfcac; + } + + public String getGzci() { + return gzci; + } + + public void setGzci(String gzci) { + this.gzci = gzci; + } + + public String getGzeha() { + return gzeha; + } + + public void setGzeha(String gzeha) { + this.gzeha = gzeha; + } + + public String getKwbeh() { + return kwbeh; + } + + public void setKwbeh(String kwbeh) { + this.kwbeh = kwbeh; + } + + public String getGzmf() { + return gzmf; + } + + public void setGzmf(String gzmf) { + this.gzmf = gzmf; + } + + public String getGzse() { + return gzse; + } + + public void setGzse(String gzse) { + this.gzse = gzse; + } + + public String getGzafj() { + return gzafj; + } + + public void setGzafj(String gzafj) { + this.gzafj = gzafj; + } + + public String getKcc() { + return kcc; + } + + public void setKcc(String kcc) { + this.kcc = kcc; + } + + public String getM2sLegend() { + return m2sLegend; + } + + public void setM2sLegend(String m2sLegend) { + this.m2sLegend = m2sLegend; + } +} -- Gitblit v1.9.3