package cn.com.goldenwater.dcproj.param; import cn.com.goldenwater.core.param.PageParam; import io.swagger.annotations.ApiParam; import java.util.Date; import java.io.Serializable; import io.swagger.annotations.ApiModelProperty; /** * BisInspDvdwkParam * * @author lhc * @date 2019-4-30 */ public class BisInspDvdwkParam extends PageParam implements Serializable { // 主键 @ApiParam(name = "主键") @ApiModelProperty(value = "主键", name = "dvdwkId") private String dvdwkId; private String schmId; private String guid; // 机构id @ApiParam(name = "机构id") @ApiModelProperty(value = "机构id", name = "orgDp") private String orgDp; // 督查类型(1:小水库、2:农饮、3:水毁) @ApiParam(name = "督查类型(1:小水库、2:农饮、3:水毁)") @ApiModelProperty(value = "督查类型(1:小水库、2:农饮、3:水毁)", name = "dtype") private String dtype; // 内容 @ApiParam(name = "内容") @ApiModelProperty(value = "内容", name = "content") private String content; // 录入时间 @ApiParam(name = "录入时间") @ApiModelProperty(value = "录入时间", name = "intm") private Date intm; // 修改时间 @ApiParam(name = "修改时间") @ApiModelProperty(value = "修改时间", name = "uptm") private Date uptm; // 督查对象总数 @ApiParam(name = "督查对象总数") @ApiModelProperty(value = "督查对象总数", name = "inspNum") private Double inspNum; // 行政区编码 @ApiParam(name = "行政区编码") @ApiModelProperty(value = "行政区编码", name = "adCode") private String adCode; // 行政区名称 @ApiParam(name = "行政区名称") @ApiModelProperty(value = "行政区名称", name = "adName") private String adName; // 机构名称 @ApiParam(name = "机构名称") @ApiModelProperty(value = "机构名称", name = "orgName") private String orgName; // 基础数据总数 @ApiParam(name = "基础数据总数") @ApiModelProperty(value = "基础数据总数", name = "inspCount") private Double inspCount; // 督查对象占比 @ApiParam(name = "督查对象占比") @ApiModelProperty(value = "督查对象占比", name = "inspScale") private Double inspScale; public BisInspDvdwkParam() { } public String getDvdwkId() { return dvdwkId; } public void setDvdwkId(String dvdwkId) { this.dvdwkId = dvdwkId; } public String getSchmId() { return schmId; } public void setSchmId(String schmId) { this.schmId = schmId; } 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 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 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 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 String getOrgName() { return orgName; } public void setOrgName(String orgName) { this.orgName = orgName; } 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; } }