package com.lf.server.entity.bs;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.lf.server.annotation.HeadRowNumber;
|
import lombok.Data;
|
|
/**
|
* 管道成果表
|
* @author WWW
|
*/
|
@Data
|
@HeadRowNumber(value = 3)
|
public class Gxcg {
|
@ExcelProperty(index = 0)
|
private String bh;
|
|
@ExcelProperty(index = 1)
|
private String gxdh;
|
|
@ExcelProperty(index = 2)
|
private String bh2;
|
|
@ExcelProperty(index = 3)
|
private String msfs;
|
|
@ExcelProperty(index = 4)
|
private String chiChun;
|
|
@ExcelProperty(index = 5)
|
private String tz;
|
|
@ExcelProperty(index = 6)
|
private String fsw;
|
|
@ExcelProperty(index = 7)
|
private double x;
|
|
@ExcelProperty(index = 8)
|
private double y;
|
|
@ExcelProperty(index = 9)
|
private String gnd;
|
|
@ExcelProperty(index = 10)
|
private double ms;
|
|
@ExcelProperty(index = 11)
|
private String zks;
|
|
@ExcelProperty(index = 12)
|
private String gkpl;
|
|
@ExcelProperty(index = 13)
|
private String dy;
|
|
@ExcelProperty(index = 14)
|
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 getBh2() {
|
return bh2;
|
}
|
|
public void setBh2(String bh2) {
|
this.bh2 = bh2;
|
}
|
|
public String getMsfs() {
|
return msfs;
|
}
|
|
public void setMsfs(String msfs) {
|
this.msfs = msfs;
|
}
|
|
public String getChiChun() {
|
return chiChun;
|
}
|
|
public void setChiChun(String chiChun) {
|
this.chiChun = chiChun;
|
}
|
|
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 String getGnd() {
|
return gnd;
|
}
|
|
public void setGnd(String gnd) {
|
this.gnd = gnd;
|
}
|
|
public double getMs() {
|
return ms;
|
}
|
|
public void setMs(double ms) {
|
this.ms = ms;
|
}
|
|
public String getZks() {
|
return zks;
|
}
|
|
public void setZks(String zks) {
|
this.zks = zks;
|
}
|
|
public String getGkpl() {
|
return gkpl;
|
}
|
|
public void setGkpl(String gkpl) {
|
this.gkpl = gkpl;
|
}
|
|
public String getDy() {
|
return dy;
|
}
|
|
public void setDy(String dy) {
|
this.dy = dy;
|
}
|
|
public String getBz() {
|
return bz;
|
}
|
|
public void setBz(String bz) {
|
this.bz = bz;
|
}
|
}
|