package cn.com.goldenwater.dcproj.dto; import cn.com.goldenwater.dcproj.model.RgstrInfo; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; import java.util.Date; /** * Created by 61618 on 2019/5/5. */ public class EmpwtprjDto extends RgstrInfo implements Serializable { private String objId; // 重点水利项目问题ID @ApiModelProperty(value = "重点水利项目问题ID", name = "id") private String id; // 项目类型 @ApiModelProperty(value = "项目类型 0:重大农业节水工程 1:重大引调水工程 2:重点水源工程 3:江河湖泊治理骨干工程 4:新建大型灌区工程 5:非水利部下达投资计划 6:全部由地方投资 7:其他项目15项", name = "ptype") private String ptype; // 所在行政区代码 @ApiModelProperty(value = "所在行政区代码", name = "adCode") private String adCode; // 行政区名称 @ApiModelProperty(value = "行政区名称", name = "adName") private String adName; // 名称 @ApiModelProperty(value = "名称", name = "nm") private String nm; // 开工年份 @ApiModelProperty(value = "开工年份", name = "stwktm") private String stwktm; // 计划工期(月) @ApiModelProperty(value = "计划工期(月)", name = "plantm") private Double plantm; // 概算批复总投资(亿元) @ApiModelProperty(value = "概算批复总投资(亿元)", name = "estapp") private String estapp; // 高德经度 @ApiModelProperty(value = "高德经度", name = "lgtd") private Double lgtd; // 高德纬度 @ApiModelProperty(value = "高德纬度", name = "lttd") private Double lttd; // PC经度 @ApiModelProperty(value = "PC经度", name = "lgtdPc") private Double lgtdPc; // PC纬度 @ApiModelProperty(value = "PC纬度", name = "lttdPc") private Double lttdPc; // 插入时间 @ApiModelProperty(value = "插入时间", name = "intm") private Date intm; // 最后更新时间 @ApiModelProperty(value = "最后更新时间", name = "uptm") private Date uptm; // 备注 @ApiModelProperty(value = "备注", name = "note") private String note; // 管理单位ID @ApiModelProperty(value = "管理单位ID", name = "unitId") private String unitId; // 管理单位名称 @ApiModelProperty(value = "管理单位名称", name = "unitNm") private String unitNm; // 更新人ID @ApiModelProperty(value = "更新人ID", name = "persId") private String persId;//更新人ID // 建成年份 @ApiModelProperty(value = "建成年份", name = "buidTimeYear") private String buidTimeYear; // 工程建设情况-1:建成;2:未建成 @ApiModelProperty(value = "工程建设情况-1:建成;2:未建成", name = "engSta") private String engSta; @ApiModelProperty(value = "名称", name = "name") private String name; @ApiModelProperty(value = "编码", name = "code") private String code; @Override public String getObjId() { return objId; } @Override public void setObjId(String objId) { this.objId = objId; } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getPtype() { return ptype; } public void setPtype(String ptype) { this.ptype = ptype; } public String getAdCode() { return adCode; } public void setAdCode(String adCode) { this.adCode = adCode; } public String getAdName() { return adName; } public void setAdName(String adName) { this.adName = adName; } public String getNm() { return nm; } public void setNm(String nm) { this.nm = nm; } public String getStwktm() { return stwktm; } public void setStwktm(String stwktm) { this.stwktm = stwktm; } public Double getPlantm() { return plantm; } public void setPlantm(Double plantm) { this.plantm = plantm; } public String getEstapp() { return estapp; } public void setEstapp(String estapp) { this.estapp = estapp; } public Double getLgtd() { return lgtd; } public void setLgtd(Double lgtd) { this.lgtd = lgtd; } public Double getLttd() { return lttd; } public void setLttd(Double lttd) { this.lttd = lttd; } public Double getLgtdPc() { return lgtdPc; } public void setLgtdPc(Double lgtdPc) { this.lgtdPc = lgtdPc; } public Double getLttdPc() { return lttdPc; } public void setLttdPc(Double lttdPc) { this.lttdPc = lttdPc; } public Date getIntm() { return intm; } public void setIntm(Date intm) { this.intm = intm; } public Date getUptm() { return uptm; } public void setUptm(Date uptm) { this.uptm = uptm; } public String getNote() { return note; } public void setNote(String note) { this.note = note; } public String getUnitId() { return unitId; } public void setUnitId(String unitId) { this.unitId = unitId; } public String getUnitNm() { return unitNm; } public void setUnitNm(String unitNm) { this.unitNm = unitNm; } public String getPersId() { return persId; } public void setPersId(String persId) { this.persId = persId; } public String getBuidTimeYear() { return buidTimeYear; } public void setBuidTimeYear(String buidTimeYear) { this.buidTimeYear = buidTimeYear; } public String getEngSta() { return engSta; } public void setEngSta(String engSta) { this.engSta = engSta; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getCode() { return code; } public void setCode(String code) { this.code = code; } @Override public String toString() { return "EmpwtprjDto{" + "objId='" + objId + '\'' + ", id='" + id + '\'' + ", ptype='" + ptype + '\'' + ", adCode='" + adCode + '\'' + ", adName='" + adName + '\'' + ", nm='" + nm + '\'' + ", stwktm=" + stwktm + ", plantm=" + plantm + ", estapp=" + estapp + ", lgtd=" + lgtd + ", lttd=" + lttd + ", lgtdPc=" + lgtdPc + ", lttdPc=" + lttdPc + ", intm=" + intm + ", uptm=" + uptm + ", note='" + note + '\'' + ", unitId='" + unitId + '\'' + ", unitNm='" + unitNm + '\'' + ", persId='" + persId + '\'' + ", buidTimeYear='" + buidTimeYear + '\'' + ", engSta='" + engSta + '\'' + ", name='" + name + '\'' + ", code='" + code + '\'' + '}'; } }