package cn.com.goldenwater.dcproj.dto; import cn.com.goldenwater.dcproj.model.RgstrInfo; import io.swagger.annotations.ApiModelProperty; /** * Created by 61618 on 2019/4/20. */ public class BisInspSupWtdst extends RgstrInfo { @ApiModelProperty(value = "水毁修复清单ID") private String code; @ApiModelProperty(value = "类别名称") private String wtdstType; @ApiModelProperty(value = "项目名称") private String name; @ApiModelProperty(value = "修复状态") private String wtdstState; @ApiModelProperty(value = "所在行政区划代码") private String locAd; @ApiModelProperty(value = "水毁情况") private String wtdstDtle; @ApiModelProperty(value = "主要工程量") private String wtdstWrkam; @ApiModelProperty(value = "计划修复日期") private String planRcvrTm; @ApiModelProperty(value = "插入时间") private String intm; @ApiModelProperty(value = "最后更新时间") private String uptm; @ApiModelProperty(value = "备注") private String note; @ApiModelProperty(value = "水毁位置经度") private Double wtdstLgtd; @ApiModelProperty(value = "水毁位置纬度") private Double wtdstLttd; @ApiModelProperty(value = "项目所在位置") private String locNm; private String objType; private String objCode; private String objName; @ApiModelProperty(value = "高德经度") private Double centerXGd; @ApiModelProperty(value = "高德纬度") private Double centerYGd; private String src; @ApiModelProperty(value = "是否省属 1是2否") private String provincial; public String getCode() { return code; } public void setCode(String code) { this.code = code; } public String getWtdstType() { return wtdstType; } public void setWtdstType(String wtdstType) { this.wtdstType = wtdstType; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getWtdstState() { return wtdstState; } public void setWtdstState(String wtdstState) { this.wtdstState = wtdstState; } public String getLocAd() { return locAd; } public void setLocAd(String locAd) { this.locAd = locAd; } public String getWtdstDtle() { return wtdstDtle; } public void setWtdstDtle(String wtdstDtle) { this.wtdstDtle = wtdstDtle; } public String getWtdstWrkam() { return wtdstWrkam; } public void setWtdstWrkam(String wtdstWrkam) { this.wtdstWrkam = wtdstWrkam; } public String getPlanRcvrTm() { return planRcvrTm; } public void setPlanRcvrTm(String planRcvrTm) { this.planRcvrTm = planRcvrTm; } public String getIntm() { return intm; } public void setIntm(String intm) { this.intm = intm; } public String getUptm() { return uptm; } public void setUptm(String uptm) { this.uptm = uptm; } public String getNote() { return note; } public void setNote(String note) { this.note = note; } public Double getWtdstLgtd() { return wtdstLgtd; } public void setWtdstLgtd(Double wtdstLgtd) { this.wtdstLgtd = wtdstLgtd; } public Double getWtdstLttd() { return wtdstLttd; } public void setWtdstLttd(Double wtdstLttd) { this.wtdstLttd = wtdstLttd; } public String getLocNm() { return locNm; } public void setLocNm(String locNm) { this.locNm = locNm; } public String getObjType() { return objType; } public void setObjType(String objType) { this.objType = objType; } public String getObjCode() { return objCode; } public void setObjCode(String objCode) { this.objCode = objCode; } public String getObjName() { return objName; } public void setObjName(String objName) { this.objName = objName; } public Double getCenterXGd() { return centerXGd; } public void setCenterXGd(Double centerXGd) { this.centerXGd = centerXGd; } public Double getCenterYGd() { return centerYGd; } public void setCenterYGd(Double centerYGd) { this.centerYGd = centerYGd; } public String getSrc() { return src; } public void setSrc(String src) { this.src = src; } public String getProvincial() { return provincial; } public void setProvincial(String provincial) { this.provincial = provincial; } @Override public String toString() { return "BisInspSupWtdst{" + "code='" + code + '\'' + ", wtdstType='" + wtdstType + '\'' + ", name='" + name + '\'' + ", wtdstState='" + wtdstState + '\'' + ", locAd='" + locAd + '\'' + ", wtdstDtle='" + wtdstDtle + '\'' + ", wtdstWrkam='" + wtdstWrkam + '\'' + ", planRcvrTm='" + planRcvrTm + '\'' + ", intm='" + intm + '\'' + ", uptm='" + uptm + '\'' + ", note='" + note + '\'' + ", wtdstLgtd=" + wtdstLgtd + ", wtdstLttd=" + wtdstLttd + ", locNm='" + locNm + '\'' + ", objType='" + objType + '\'' + ", objCode='" + objCode + '\'' + ", objName='" + objName + '\'' + ", centerXGd=" + centerXGd + ", centerYGd=" + centerYGd + ", src='" + src + '\'' + ", provincial='" + provincial + '\'' + '}'; } }