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;
|
}
|
}
|