package cn.com.goldenwater.dcproj.param; import cn.com.goldenwater.dcproj.model.BisInspPblmPlist; import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiParam; import java.io.Serializable; import java.util.Arrays; import java.util.Date; /** * BisInspPblmPlistParam * * @author lhc * @date 2020-11-23 */ public class BisInspPblmPlistParam extends BisInspPblmPlist implements Serializable { @ApiModelProperty("业务处室") private String[] depm; @ApiModelProperty("开始时间") private Date sttm; @ApiModelProperty("结束时间") private Date entm; @ApiModelProperty("行政区划") private String adCode; @ApiModelProperty("时间类型") private String timeType; @ApiParam( name = "pageNum", value = "页码", defaultValue = "1" ) private int pageNum = 1; @ApiParam( name = "pageSize", value = "每页记录数", defaultValue = "10" ) private int pageSize = 10; @ApiParam( name = "orderBy", value = "排序语句(例如:id desc, create_time desc)" ) private String orderBy; @ApiParam( name = "count", value = "是否查询总数(默认不)", defaultValue = "false" ) private boolean count = false; @ApiParam( name = "offset", value = "偏移量:上页最后一条记录标识" ) private String offset; /** * 查询人是否是省级账号,1是,2否 */ private String provincialLevel; /** * 区分查询类型 省 province 市 city 县 county */ private String orgType; /** * 审批是否同意 1是 2否 */ private String isAgree; /** * 审批 意见 */ private String comment; /** * 是否系统整改问题 (非导入) 1是 2否 */ private String isSys; @ApiModelProperty("开始时间,YYYY-MM-DD") private String endTime; @ApiModelProperty("结束时间,YYYY-MM-DD") private String startTime; @ApiModelProperty("是否有多媒体") private String hasVedio; /** * 督查单位 、 督查部门 */ private String leadDep; private String orgNm; @ApiModelProperty("是否典型问题") private String ifCasePblm; public BisInspPblmPlistParam() { } public String getTimeType() { return timeType; } public void setTimeType(String timeType) { this.timeType = timeType; } public String[] getDepm() { return depm; } public void setDepm(String[] depm) { this.depm = depm; } public Date getSttm() { return sttm; } public void setSttm(Date sttm) { this.sttm = sttm; } public Date getEntm() { return entm; } public void setEntm(Date entm) { this.entm = entm; } public int getPageNum() { return this.pageNum; } public void setPageNum(int pageNum) { this.pageNum = pageNum; } public int getPageSize() { return this.pageSize; } public void setPageSize(int pageSize) { this.pageSize = pageSize; } public String getOrderBy() { return this.orderBy; } public void setOrderBy(String orderBy) { this.orderBy = orderBy; } public boolean getCount() { return this.count; } public void setCount(boolean containPageInfo) { this.count = this.count; } public String getOffset() { return this.offset; } public void setOffset(String offset) { this.offset = offset; } public String getProvincialLevel() { return provincialLevel; } public String getOrgType() { return orgType; } public void setOrgType(String orgType) { this.orgType = orgType; } public String getIsAgree() { return isAgree; } public void setIsAgree(String isAgree) { this.isAgree = isAgree; } public String getComment() { return comment; } public void setComment(String comment) { this.comment = comment; } public void setProvincialLevel(String provincialLevel) { this.provincialLevel = provincialLevel; } public String getAdCode() { return adCode; } public void setAdCode(String adCode) { this.adCode = adCode; } public String getIsSys() { return isSys; } public void setIsSys(String isSys) { this.isSys = isSys; } public String getEndTime() { return endTime; } public void setEndTime(String endTime) { this.endTime = endTime; } public String getStartTime() { return startTime; } public void setStartTime(String startTime) { this.startTime = startTime; } public String getHasVedio() { return hasVedio; } public void setHasVedio(String hasVedio) { this.hasVedio = hasVedio; } public String getLeadDep() { return leadDep; } public void setLeadDep(String leadDep) { this.leadDep = leadDep; } public String getOrgNm() { return orgNm; } public void setOrgNm(String orgNm) { this.orgNm = orgNm; } public String getIfCasePblm() { return ifCasePblm; } public void setIfCasePblm(String ifCasePblm) { this.ifCasePblm = ifCasePblm; } @Override public String toString() { return "BisInspPblmPlistParam{" + "depm=" + Arrays.toString(depm) + ", sttm=" + sttm + ", entm=" + entm + ", adCode='" + adCode + '\'' + ", timeType='" + timeType + '\'' + ", pageNum=" + pageNum + ", pageSize=" + pageSize + ", orderBy='" + orderBy + '\'' + ", count=" + count + ", offset='" + offset + '\'' + ", provincialLevel='" + provincialLevel + '\'' + ", orgType='" + orgType + '\'' + ", isAgree='" + isAgree + '\'' + ", comment='" + comment + '\'' + ", isSys='" + isSys + '\'' + ", endTime='" + endTime + '\'' + ", startTime='" + startTime + '\'' + ", hasVedio='" + hasVedio + '\'' + ", leadDep='" + leadDep + '\'' + ", orgNm='" + orgNm + '\'' + ", ifCasePblm='" + ifCasePblm + '\'' + '}'; } }