package cn.com.goldenwater.dcproj.dto; import cn.com.goldenwater.dcproj.model.RgstrInfo; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; /** * Created by 61618 on 2019/5/5. */ public class GrwDto extends RgstrInfo implements Serializable { private static final long serialVersionUID = 1L; //监测站编码(主键) @ApiModelProperty(value = "监测站编码(长度:20,主键,可为空:N)") private String stcd; @ApiModelProperty(value = "(长度:50,可为空:Y)") private String dtmmdpr; @ApiModelProperty(value = "(长度:50,可为空:Y)") private String dtmnm; //设站日期 @ApiModelProperty(value = "设站日期(长度:7,可为空:Y)") private String esstym; @ApiModelProperty(value = "(精度:10,小数位:6,可为空:Y)") private Double lgtdPc; //是否自流井 @ApiModelProperty(value = "是否自流井(长度:50,可为空:Y)") private String isart; //监测站位置 @ApiModelProperty(value = "监测站位置(长度:50,可为空:Y)") private String stlc; //井深(m) @ApiModelProperty(value = "井深(m)(精度:10,小数位:3,可为空:Y)") private Double welldep; @ApiModelProperty(value = "(长度:4,000,可为空:Y)") private String note; //北纬(度) @ApiModelProperty(value = "北纬(度)(精度:10,小数位:6,可为空:Y)") private Double lttd; //水介质 @ApiModelProperty(value = "水介质(长度:50,可为空:Y)") private String aqme; //埋藏条件 @ApiModelProperty(value = "埋藏条件(长度:50,可为空:Y)") private String burcn; //刊布项目 @ApiModelProperty(value = "刊布项目(长度:50,可为空:Y)") private String pbprj; //建井类型 @ApiModelProperty(value = "建井类型(长度:50,可为空:Y)") private String bwsttp; //监测站名称 @ApiModelProperty(value = "监测站名称(长度:100,可为空:Y)") private String stnm; //行政区划代码 @ApiModelProperty(value = "行政区划代码(长度:50,可为空:Y)") private String adcd; //监测站类别 @ApiModelProperty(value = "监测站类别(长度:50,可为空:Y)") private String sttp; //监测站类别 @ApiModelProperty(value = "监测站类别中文") private String sttpNm; @ApiModelProperty(value = "(长度:50,可为空:Y)") private String stel; //撤站日期 @ApiModelProperty(value = "撤站日期(长度:7,可为空:Y)") private String calym; //测站所属流域机构 @ApiModelProperty(value = "测站所属流域机构(长度:50,可为空:Y)") private String rvnm; //所属地质单元 @ApiModelProperty(value = "所属地质单元(长度:50,可为空:Y)") private String gogunt; //保护装置 @ApiModelProperty(value = "保护装置(长度:50,可为空:Y)") private String prtc; //地面高程(m) @ApiModelProperty(value = "地面高程(m)(精度:10,小数位:3,可为空:Y)") private Double grdlvl; //行政区划名称 @ApiModelProperty(value = "行政区划名称(长度:50,可为空:Y)") private String adnm; @ApiModelProperty(value = "(精度:10,小数位:6,可为空:Y)") private Double lttdPc; //东经(度) @ApiModelProperty(value = "东经(度)(精度:10,小数位:6,可为空:Y)") private Double lgtd; //监测井类型 @ApiModelProperty(value = "监测井类型(长度:50,可为空:Y)") private String wsttp; //原编码 @ApiModelProperty(value = "原编码(长度:50,可为空:Y)") private String ostcd; @ApiModelProperty(value = "(长度:50,可为空:Y)") private String esstyr; //入库时间 @ApiModelProperty(value = "入库时间(长度:7,可为空:Y)") private String intm; //固定点高程(m) @ApiModelProperty(value = "固定点高程(m)(精度:10,小数位:3,可为空:Y)") private Double stndpnt; //管理单位 @ApiModelProperty(value = "管理单位(长度:50,可为空:Y)") private String mnun; //产权单位 @ApiModelProperty(value = "产权单位(长度:50,可为空:Y)") private String onun; //井台高(m) @ApiModelProperty(value = "井台高(m)(精度:10,小数位:3,可为空:Y)") private Double spghgh; private String code; private String name; public static long getSerialVersionUID() { return serialVersionUID; } public String getStcd() { return stcd; } public void setStcd(String stcd) { this.stcd = stcd; } public String getDtmmdpr() { return dtmmdpr; } public void setDtmmdpr(String dtmmdpr) { this.dtmmdpr = dtmmdpr; } public String getDtmnm() { return dtmnm; } public void setDtmnm(String dtmnm) { this.dtmnm = dtmnm; } public String getEsstym() { return esstym; } public void setEsstym(String esstym) { this.esstym = esstym; } public Double getLgtdPc() { return lgtdPc; } public void setLgtdPc(Double lgtdPc) { this.lgtdPc = lgtdPc; } public String getIsart() { return isart; } public void setIsart(String isart) { this.isart = isart; } public String getStlc() { return stlc; } public void setStlc(String stlc) { this.stlc = stlc; } public Double getWelldep() { return welldep; } public void setWelldep(Double welldep) { this.welldep = welldep; } public String getNote() { return note; } public void setNote(String note) { this.note = note; } public Double getLttd() { return lttd; } public void setLttd(Double lttd) { this.lttd = lttd; } public String getAqme() { return aqme; } public void setAqme(String aqme) { this.aqme = aqme; } public String getBurcn() { return burcn; } public void setBurcn(String burcn) { this.burcn = burcn; } public String getPbprj() { return pbprj; } public void setPbprj(String pbprj) { this.pbprj = pbprj; } public String getBwsttp() { return bwsttp; } public void setBwsttp(String bwsttp) { this.bwsttp = bwsttp; } public String getStnm() { return stnm; } public void setStnm(String stnm) { this.stnm = stnm; } public String getAdcd() { return adcd; } public void setAdcd(String adcd) { this.adcd = adcd; } public String getSttp() { return sttp; } public void setSttp(String sttp) { this.sttp = sttp; } public String getSttpNm() { return sttpNm; } public void setSttpNm(String sttpNm) { this.sttpNm = sttpNm; } public String getStel() { return stel; } public void setStel(String stel) { this.stel = stel; } public String getCalym() { return calym; } public void setCalym(String calym) { this.calym = calym; } public String getRvnm() { return rvnm; } public void setRvnm(String rvnm) { this.rvnm = rvnm; } public String getGogunt() { return gogunt; } public void setGogunt(String gogunt) { this.gogunt = gogunt; } public String getPrtc() { return prtc; } public void setPrtc(String prtc) { this.prtc = prtc; } public Double getGrdlvl() { return grdlvl; } public void setGrdlvl(Double grdlvl) { this.grdlvl = grdlvl; } public String getAdnm() { return adnm; } public void setAdnm(String adnm) { this.adnm = adnm; } public Double getLttdPc() { return lttdPc; } public void setLttdPc(Double lttdPc) { this.lttdPc = lttdPc; } public Double getLgtd() { return lgtd; } public void setLgtd(Double lgtd) { this.lgtd = lgtd; } public String getWsttp() { return wsttp; } public void setWsttp(String wsttp) { this.wsttp = wsttp; } public String getOstcd() { return ostcd; } public void setOstcd(String ostcd) { this.ostcd = ostcd; } public String getEsstyr() { return esstyr; } public void setEsstyr(String esstyr) { this.esstyr = esstyr; } public String getIntm() { return intm; } public void setIntm(String intm) { this.intm = intm; } public Double getStndpnt() { return stndpnt; } public void setStndpnt(Double stndpnt) { this.stndpnt = stndpnt; } public String getMnun() { return mnun; } public void setMnun(String mnun) { this.mnun = mnun; } public String getOnun() { return onun; } public void setOnun(String onun) { this.onun = onun; } public Double getSpghgh() { return spghgh; } public void setSpghgh(Double spghgh) { this.spghgh = spghgh; } public String getCode() { return code; } public void setCode(String code) { this.code = code; } public String getName() { return name; } public void setName(String name) { this.name = name; } @Override public String toString() { return "GrwDto{" + "stcd='" + stcd + '\'' + ", dtmmdpr='" + dtmmdpr + '\'' + ", dtmnm='" + dtmnm + '\'' + ", esstym='" + esstym + '\'' + ", lgtdPc=" + lgtdPc + ", isart='" + isart + '\'' + ", stlc='" + stlc + '\'' + ", welldep=" + welldep + ", note='" + note + '\'' + ", lttd=" + lttd + ", aqme='" + aqme + '\'' + ", burcn='" + burcn + '\'' + ", pbprj='" + pbprj + '\'' + ", bwsttp='" + bwsttp + '\'' + ", stnm='" + stnm + '\'' + ", adcd='" + adcd + '\'' + ", sttp='" + sttp + '\'' + ", sttpNm='" + sttpNm + '\'' + ", stel='" + stel + '\'' + ", calym='" + calym + '\'' + ", rvnm='" + rvnm + '\'' + ", gogunt='" + gogunt + '\'' + ", prtc='" + prtc + '\'' + ", grdlvl=" + grdlvl + ", adnm='" + adnm + '\'' + ", lttdPc=" + lttdPc + ", lgtd=" + lgtd + ", wsttp='" + wsttp + '\'' + ", ostcd='" + ostcd + '\'' + ", esstyr='" + esstyr + '\'' + ", intm='" + intm + '\'' + ", stndpnt=" + stndpnt + ", mnun='" + mnun + '\'' + ", onun='" + onun + '\'' + ", spghgh=" + spghgh + ", code='" + code + '\'' + ", name='" + name + '\'' + '}'; } }