| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.dcproj.model.BisInspPblm;
- import io.swagger.annotations.ApiModelProperty;
- import io.swagger.annotations.ApiParam;
- import java.io.Serializable;
- /**
- * BisInspPblmParam
- *
- * @author lune
- * @date 2019-2-23
- */
- public class BisInspPblmParam extends BisInspPblm implements Serializable {
- @ApiModelProperty("分组sql拼接")
- private String inIdsSql;
- @ApiModelProperty("所有登记表")
- private String[] rgsterTable;
- @ApiModelProperty("业务处室")
- private String[] depm;
- @ApiModelProperty("时间")
- private String timeType;
- private String sttm;
- private String entm;
- private String year;
- @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 String[] getDepm() {
- return depm;
- }
- public void setDepm(String[] depm) {
- this.depm = depm;
- }
- public String getYear() {
- return year;
- }
- public void setYear(String year) {
- this.year = year;
- }
- 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 String getTimeType() {
- return timeType;
- }
- public void setTimeType(String timeType) {
- this.timeType = timeType;
- }
- public String[] getRgsterTable() {
- return rgsterTable;
- }
- public void setRgsterTable(String[] rgsterTable) {
- this.rgsterTable = rgsterTable;
- }
- 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 getInIdsSql() {
- return inIdsSql;
- }
- public void setInIdsSql(String inIdsSql) {
- this.inIdsSql = inIdsSql;
- }
- }
|