| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import cn.com.goldenwater.dcproj.model.BisInspQaScore;
- import io.swagger.annotations.ApiParam;
- import java.util.Date;
- import java.io.Serializable;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * BisInspQaScoreParam
- *
- * @author hjp
- * @date 2022-7-28
- */
- public class BisInspQaScoreParam extends BisInspQaScore 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;
- public int getPageNum() {
- return pageNum;
- }
- public void setPageNum(int pageNum) {
- this.pageNum = pageNum;
- }
- public int getPageSize() {
- return pageSize;
- }
- public void setPageSize(int pageSize) {
- this.pageSize = pageSize;
- }
- public String getOrderBy() {
- return orderBy;
- }
- public void setOrderBy(String orderBy) {
- this.orderBy = orderBy;
- }
- public boolean isCount() {
- return count;
- }
- public void setCount(boolean count) {
- this.count = count;
- }
- public String getOffset() {
- return offset;
- }
- public void setOffset(String offset) {
- this.offset = offset;
- }
- }
|