From ab849f796bdc17236a95ea5fe5c166fb8f24a75c Mon Sep 17 00:00:00 2001 From: sws <15810472099@163.com> Date: 星期六, 26 十一月 2022 16:12:02 +0800 Subject: [PATCH] 1 --- src/main/java/com/lf/server/entity/md/MdGdcgEntity.java | 222 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 222 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/lf/server/entity/md/MdGdcgEntity.java b/src/main/java/com/lf/server/entity/md/MdGdcgEntity.java new file mode 100644 index 0000000..600b873 --- /dev/null +++ b/src/main/java/com/lf/server/entity/md/MdGdcgEntity.java @@ -0,0 +1,222 @@ +package com.lf.server.entity.md; + +import com.alibaba.excel.annotation.ExcelProperty; +import com.baomidou.mybatisplus.annotation.TableName; +import com.lf.server.annotation.ExcelHead; +import com.lf.server.entity.all.BaseEntity; +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.EqualsAndHashCode; +import lombok.NoArgsConstructor; + +/** + * 绠¢亾鎴愭灉琛� + * @author WWW + */ +@Data +@NoArgsConstructor +@AllArgsConstructor +@TableName("md.md_gdcg") +@ExcelHead(headRows = 3,excludeSheets = "灏侀潰,鐩綍") +@EqualsAndHashCode(callSuper = true) +public class MdGdcgEntity extends BaseEntity { + private static final long serialVersionUID = -221347663194025408L; + + @ExcelProperty(index = 0) + private String bh; + + @ExcelProperty(index = 1) + private String gxdh; + + @ExcelProperty(index = 2) + private String ljdh; + + @ExcelProperty(index = 3) + private String msfs; + + @ExcelProperty(index = 4) + private String gxcl; + + @ExcelProperty(index = 5) + private String gjcc; + + @ExcelProperty(index = 6) + private String tz; + + @ExcelProperty(index = 7) + private String fsw; + + @ExcelProperty(index = 8) + private Double x; + + @ExcelProperty(index = 9) + private Double y; + + @ExcelProperty(index = 10) + private Double dm; + + @ExcelProperty(index = 11) + private Double gd; + + @ExcelProperty(index = 12) + private Double gnd; + + @ExcelProperty(index = 13) + private Double ms; + + @ExcelProperty(index = 14) + private String dngs; + + @ExcelProperty(index = 15) + private String gkpl; + + @ExcelProperty(index = 16) + private String dldy; + + @ExcelProperty(index = 17) + private String bz; + + public String getBh() { + return bh; + } + + public void setBh(String bh) { + this.bh = bh; + } + + public String getGxdh() { + return gxdh; + } + + public void setGxdh(String gxdh) { + this.gxdh = gxdh; + } + + public String getLjdh() { + return ljdh; + } + + public void setLjdh(String ljdh) { + this.ljdh = ljdh; + } + + public String getMsfs() { + return msfs; + } + + public void setMsfs(String msfs) { + this.msfs = msfs; + } + + public String getGxcl() { + return gxcl; + } + + public void setGxcl(String gxcl) { + this.gxcl = gxcl; + } + + public String getGjcc() { + return gjcc; + } + + public void setGjcc(String gjcc) { + this.gjcc = gjcc; + } + + public String getTz() { + return tz; + } + + public void setTz(String tz) { + this.tz = tz; + } + + public String getFsw() { + return fsw; + } + + public void setFsw(String fsw) { + this.fsw = fsw; + } + + public Double getX() { + return x; + } + + public void setX(Double x) { + this.x = x; + } + + public Double getY() { + return y; + } + + public void setY(Double y) { + this.y = y; + } + + public Double getDm() { + return dm; + } + + public void setDm(Double dm) { + this.dm = dm; + } + + public Double getGd() { + return gd; + } + + public void setGd(Double gd) { + this.gd = gd; + } + + public Double getGnd() { + return gnd; + } + + public void setGnd(Double gnd) { + this.gnd = gnd; + } + + public Double getMs() { + return ms; + } + + public void setMs(Double ms) { + this.ms = ms; + } + + public String getDngs() { + return dngs; + } + + public void setDngs(String dngs) { + this.dngs = dngs; + } + + public String getGkpl() { + return gkpl; + } + + public void setGkpl(String gkpl) { + this.gkpl = gkpl; + } + + public String getDldy() { + return dldy; + } + + public void setDldy(String dldy) { + this.dldy = dldy; + } + + public String getBz() { + return bz; + } + + public void setBz(String bz) { + this.bz = bz; + } +} -- Gitblit v1.9.3