| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.dcproj.model.BisInspRsvrCamera;
- import io.swagger.annotations.ApiModelProperty;
- import io.swagger.annotations.ApiParam;
- import java.io.Serializable;
- /**
- * BisInspRsvrCameraParam
- *
- * @author lxf
- * @date 2023年8月11日
- */
- public class BisInspRsvrCameraParam extends BisInspRsvrCamera 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;
- @ApiModelProperty(value = "机构id(必填)作为检索条件",required = true)
- private String orgId;
- @ApiModelProperty("行政编码,不需要传")
- private String province;
- 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;
- }
- @Override
- public String getOrgId() {
- return orgId;
- }
- @Override
- public void setOrgId(String orgId) {
- this.orgId = orgId;
- }
- @Override
- public String getProvince() {
- return province;
- }
- @Override
- public void setProvince(String province) {
- this.province = province;
- }
- }
|