package cn.com.goldenwater.dcproj.param; import cn.com.goldenwater.dcproj.model.BisInspPblm; import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiParam; import java.io.Serializable; /** * Created by jinshui on 2019/8/12. */ public class PblmParam extends BisInspPblm implements Serializable { @ApiModelProperty("分组sql拼接") private String inIdsSql; @ApiModelProperty("当前数据,历史数据:0全部,1当前2历史") private String tabType; @ApiModelProperty("当前时间") private String nowTime; @ApiModelProperty("左侧机构id列表") private String orgIds; @ApiModelProperty("多个行政区划编码") private String adCodes; @ApiModelProperty("对象id") private String persId; @ApiModelProperty("督查对象类型") private String pType; @ApiModelProperty("分类") private String type; @ApiModelProperty("是否整改(1:是;2:否)") private String rect; @ApiModelProperty("多个督查对象编码") private String codes; @ApiModelProperty("问题类型ID") private String bplmsTypeId; @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; @ApiParam(name = "secId", value = "公司ID") private String secId; @ApiParam(name = "state", value = "状态") private String state; public String getState() { return state; } public void setState(String state) { this.state = state; } public String getSecId() { return secId; } public void setSecId(String secId) { this.secId = secId; } public String getInIdsSql() { return inIdsSql; } public void setInIdsSql(String inIdsSql) { this.inIdsSql = inIdsSql; } 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 getTabType() { return tabType; } public void setTabType(String tabType) { this.tabType = tabType; } public String getNowTime() { return nowTime; } public void setNowTime(String nowTime) { this.nowTime = nowTime; } public String getBplmsTypeId() { return bplmsTypeId; } public void setBplmsTypeId(String bplmsTypeId) { this.bplmsTypeId = bplmsTypeId; } public String getCodes() { return codes; } public void setCodes(String codes) { this.codes = codes; } public String getRect() { return rect; } public void setRect(String rect) { this.rect = rect; } public String getPersId() { return persId; } public void setPersId(String persId) { this.persId = persId; } public String getpType() { return pType; } public void setpType(String pType) { this.pType = pType; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getOrgIds() { return orgIds; } public void setOrgIds(String orgIds) { this.orgIds = orgIds; } public String getAdCodes() { return adCodes; } public void setAdCodes(String adCodes) { this.adCodes = adCodes; } }