package cn.com.goldenwater.dcproj.param; import cn.com.goldenwater.dcproj.model.BisInspSafetyRgstr; import io.swagger.annotations.ApiParam; import java.io.Serializable; import java.util.Date; /** * BisInspSafetyRgstrParam * * @author lhc * @date 2021-3-11 */ public class BisInspSafetyRgstrParam extends BisInspSafetyRgstr 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 plnaId; private String code; private String nm; private Date sttm; private Date entm; public String getPlnaId() { return plnaId; } public void setPlnaId(String plnaId) { this.plnaId = plnaId; } public String getCode() { return code; } public void setCode(String code) { this.code = code; } public String getNm() { return nm; } public void setNm(String nm) { this.nm = nm; } 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; } }