| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.dcproj.model.BisInspRsvrynRgstr;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiParam;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import java.io.Serializable;
- /**
- * entity:BisInspRsvrRgstr
- *
- * @author lune
- * @date 2019-2-19
- */
- @EqualsAndHashCode(callSuper = true)
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- @Data
- public class BisInspRsvrynRgstrParam extends BisInspRsvrynRgstr 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;
- }
|