package cn.com.goldenwater.dcproj.param; import cn.com.goldenwater.dcproj.model.BisInspWtgthRgstr; import io.swagger.annotations.ApiParam; import java.io.Serializable; /** * BisInspWtgthRgstrParam * * @author lhc * @date 2020-10-13 */ public class BisInspWtgthRgstrParam extends BisInspWtgthRgstr implements Serializable { @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; private String sttm; private String entm; @ApiParam("组ID 数组") private String[] groupIds; @ApiParam("行政区划编码列表 ") private String adCodes; @ApiParam("当前数据,历史数据:0全部,1当前2历史") private String tabType; @ApiParam("当前时间") private String nowTime; @ApiParam("查询所有字段") private String isAll; private String presId; @ApiParam("督查类型value") private String pType; @ApiParam("督促类型code") private String type; @ApiParam("流域名称") private String riverId; @ApiParam("节点Id") private String plnaId; public BisInspWtgthRgstrParam() { } public String getSttm() { return sttm; } public void setSttm(String sttm) { this.sttm = sttm; } public String getEntm() { return entm; } public void setEntm(String 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[] getGroupIds() { return groupIds; } public void setGroupIds(String[] groupIds) { this.groupIds = groupIds; } public String getAdCodes() { return adCodes; } public void setAdCodes(String adCodes) { this.adCodes = adCodes; } 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 getIsAll() { return isAll; } public void setIsAll(String isAll) { this.isAll = isAll; } public String getPresId() { return presId; } public void setPresId(String presId) { this.presId = presId; } 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 getRiverId() { return riverId; } public void setRiverId(String riverId) { this.riverId = riverId; } public String getPlnaId() { return plnaId; } public void setPlnaId(String plnaId) { this.plnaId = plnaId; } }