package cn.com.goldenwater.dcproj.model; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; /** * Created by 61618 on 2019/2/25. */ public class AttPersWtdst extends PersObj implements Serializable { // 水毁修复清单ID @ApiModelProperty("水毁修复清单ID") private String wtdstId; // 登记表ID @ApiModelProperty("登记表ID") private String trackId; // 类别名称 @ApiModelProperty("类别名称") private String wtdstType; // 项目名称 @ApiModelProperty("项目名称") private String wtdstNm; // 修复状态 @ApiModelProperty("修复状态") private String wtdstState; // 所在行政区划代码 @ApiModelProperty("行政区划代码") private String locAd; // 水毁情况 @ApiModelProperty("水毁情况") private String wtdstDtle; // 主要工程量 @ApiModelProperty("主要工程量") private String wtdstWrkam; // 计划修复日期 @ApiModelProperty("计划修复日期") private String planRcvrTm; // 插入时间 @ApiModelProperty("对象生成时间") private String intm; // 最后更新时间 @ApiModelProperty("对象更新时间") private String uptm; // 备注 @ApiModelProperty("备注") private String note; // 水毁位置经度 @ApiModelProperty("经度") private Double wtdstLgtd; // 水毁位置纬度 @ApiModelProperty("纬度") private Double wtdstLttd; // 项目所在位置 @ApiModelProperty("详细位置") private String locNm; @ApiModelProperty("行政区划名称") private String adName; private String adNm; @ApiModelProperty(value = "高德经度") private Double centerXGd; @ApiModelProperty(value = "高德纬度") private Double centerYGd; @ApiModelProperty("是否省属(1:是;2:否)") private String provincial; // 状态 @ApiModelProperty("状态") private String state; public String getState() { return state; } public void setState(String state) { this.state = state; } public String getTrackId() { return trackId; } public void setTrackId(String trackId) { this.trackId = trackId; } public String getAdNm() { return adNm; } 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 void setAdNm(String adNm) { this.adNm = adNm; } public String getAdName() { return adName; } public void setAdName(String adName) { this.adName = adName; } public String getWtdstId() { return wtdstId; } public void setWtdstId(String wtdstId) { this.wtdstId = wtdstId; } public String getWtdstType() { return wtdstType; } public void setWtdstType(String wtdstType) { this.wtdstType = wtdstType; } public String getWtdstNm() { return wtdstNm; } public void setWtdstNm(String wtdstNm) { this.wtdstNm = wtdstNm; } 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 getProvincial() { return provincial; } public void setProvincial(String provincial) { this.provincial = provincial; } @Override public String toString() { return "AttPersWtdst{" + "wtdstId='" + wtdstId + '\'' + ", wtdstType='" + wtdstType + '\'' + ", wtdstNm='" + wtdstNm + '\'' + ", wtdstState='" + wtdstState + '\'' + ", locAd='" + locAd + '\'' + ", wtdstDtle='" + wtdstDtle + '\'' + ", wtdstWrkam='" + wtdstWrkam + '\'' + ", planRcvrTm='" + planRcvrTm + '\'' + ", intm='" + intm + '\'' + ", uptm='" + uptm + '\'' + ", note='" + note + '\'' + ", wtdstLgtd=" + wtdstLgtd + ", wtdstLttd=" + wtdstLttd + ", locNm='" + locNm + '\'' + ", provincial='" + provincial + '\'' + '}'; } }