package cn.com.goldenwater.dcproj.dto; import io.swagger.annotations.ApiModelProperty; import java.util.Date; /** * Created by 61618 on 2019/5/29. */ public class NtfctnDvdwkDto { private String id; // 督查类型 001:水库 002人饮 003水毁 004:172 地下水005地下水006水闸 @ApiModelProperty(value = "督查类型 001:水库 002人饮 003水毁 004:172 地下水005地下水006水闸", name = "inspType") private String inspType; // 计划名称 @ApiModelProperty(value = "计划名称", name = "plnNm") private String plnNm; // 年度 @ApiModelProperty(value = "年度", name = "planYr") private Long planYr; // 公文号 @ApiModelProperty(value = "公文号", name = "planNo") private String planNo; // 下发单位编码 @ApiModelProperty(value = "下发单位编码", name = "orgId") private String orgId; // 发文单位 @ApiModelProperty(value = "发文单位", name = "planUnt") private String planUnt; // 发文时间 @ApiModelProperty(value = "发文时间", name = "intm") private Date intm; // 下发状态 @ApiModelProperty(value = "下发状态", name = "planUnt") private String sendState; // 督查内容简述 @ApiModelProperty(value = "督查内容简述", name = "planCnt") private String planCnt; // 车辆安排简述 @ApiModelProperty(value = "车辆安排简述", name = "planCar") private String planCar; // 发文人ID @ApiModelProperty(value = "发文人ID", name = "pesrid") private String pesrid; @ApiModelProperty(value = "人员名称", name = "persName") private String persName;// PERS_NAME; @ApiModelProperty(value = "单位名称", name = "orgNm") private String orgNm;// ORG_NM; // 主键 @ApiModelProperty(value = "主键有默认值,不用传", name = "dvdwkId") private String dvdwkId; @ApiModelProperty(value = "制作机构ID(暂时未用)", name = "guid") private String guid; // 机构id @ApiModelProperty(value = "机构id", name = "orgDp") private String orgDp; // 机构名称 @ApiModelProperty(value = "机构名称", name = "orgName") private String orgName; // 督查类型(1:小水库、2:农饮、3:水毁) @ApiModelProperty(value = "督查类型(1:小水库、2:农饮、3:水毁)", name = "dtype") private String dtype; // 内容 @ApiModelProperty(value = "内容", name = "content") private String content; // 督查对象总数 @ApiModelProperty(value = "督查对象总数", name = "inspNum") private Double inspNum; // 行政区编码 @ApiModelProperty(value = "行政区编码", name = "adCode") private String adCode; // 行政区名称 @ApiModelProperty(value = "行政区名称", name = "adName") private String adName; // 基础数据总数 @ApiModelProperty(value = "基础数据总数", name = "inspCount") private Double inspCount; // 督查对象占比 @ApiModelProperty(value = "督查对象占比", name = "inspScale") private Double inspScale; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getInspType() { return inspType; } public void setInspType(String inspType) { this.inspType = inspType; } public String getPlnNm() { return plnNm; } public void setPlnNm(String plnNm) { this.plnNm = plnNm; } public Long getPlanYr() { return planYr; } public void setPlanYr(Long planYr) { this.planYr = planYr; } public String getPlanNo() { return planNo; } public void setPlanNo(String planNo) { this.planNo = planNo; } public String getOrgId() { return orgId; } public void setOrgId(String orgId) { this.orgId = orgId; } public String getPlanUnt() { return planUnt; } public void setPlanUnt(String planUnt) { this.planUnt = planUnt; } public Date getIntm() { return intm; } public void setIntm(Date intm) { this.intm = intm; } public String getSendState() { return sendState; } public void setSendState(String sendState) { this.sendState = sendState; } public String getPlanCnt() { return planCnt; } public void setPlanCnt(String planCnt) { this.planCnt = planCnt; } public String getPlanCar() { return planCar; } public void setPlanCar(String planCar) { this.planCar = planCar; } public String getPesrid() { return pesrid; } public void setPesrid(String pesrid) { this.pesrid = pesrid; } public String getPersName() { return persName; } public void setPersName(String persName) { this.persName = persName; } public String getOrgNm() { return orgNm; } public void setOrgNm(String orgNm) { this.orgNm = orgNm; } public String getDvdwkId() { return dvdwkId; } public void setDvdwkId(String dvdwkId) { this.dvdwkId = dvdwkId; } public String getGuid() { return guid; } public void setGuid(String guid) { this.guid = guid; } public String getOrgDp() { return orgDp; } public void setOrgDp(String orgDp) { this.orgDp = orgDp; } public String getOrgName() { return orgName; } public void setOrgName(String orgName) { this.orgName = orgName; } public String getDtype() { return dtype; } public void setDtype(String dtype) { this.dtype = dtype; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } public Double getInspNum() { return inspNum; } public void setInspNum(Double inspNum) { this.inspNum = inspNum; } 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 Double getInspCount() { return inspCount; } public void setInspCount(Double inspCount) { this.inspCount = inspCount; } public Double getInspScale() { return inspScale; } public void setInspScale(Double inspScale) { this.inspScale = inspScale; } @Override public String toString() { return "NtfctnDvdwkDto{" + "id='" + id + '\'' + ", inspType='" + inspType + '\'' + ", plnNm='" + plnNm + '\'' + ", planYr=" + planYr + ", planNo='" + planNo + '\'' + ", orgId='" + orgId + '\'' + ", planUnt='" + planUnt + '\'' + ", intm=" + intm + ", sendState='" + sendState + '\'' + ", planCnt='" + planCnt + '\'' + ", planCar='" + planCar + '\'' + ", pesrid='" + pesrid + '\'' + ", persName='" + persName + '\'' + ", orgNm='" + orgNm + '\'' + ", dvdwkId='" + dvdwkId + '\'' + ", guid='" + guid + '\'' + ", orgDp='" + orgDp + '\'' + ", orgName='" + orgName + '\'' + ", dtype='" + dtype + '\'' + ", content='" + content + '\'' + ", inspNum=" + inspNum + ", adCode='" + adCode + '\'' + ", adName='" + adName + '\'' + ", inspCount=" + inspCount + ", inspScale=" + inspScale + '}'; } }