| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217 |
- package com.qingdaofushan.home.bean;
- import java.util.List;
- public class FetchUpBean {
- /**
- * querys : [{"orderby":{"columns":["createTime"],"seq":"DESC"},"limit":{"start":0,"length":30}}]
- * expands : {"options":"all"}
- */
- private ExpandsBean expands;
- private List<QuerysBean> querys;
- public ExpandsBean getExpands() {
- return expands;
- }
- public void setExpands(ExpandsBean expands) {
- this.expands = expands;
- }
- public List<QuerysBean> getQuerys() {
- return querys;
- }
- public void setQuerys(List<QuerysBean> querys) {
- this.querys = querys;
- }
- public static class ExpandsBean {
- /**
- * options : all
- */
- private String options;
- private String search;
- private int start;
- private int length;
- public int getStart() {
- return start;
- }
- public void setStart(int start) {
- this.start = start;
- }
- public int getLength() {
- return length;
- }
- public void setLength(int length) {
- this.length = length;
- }
- public String getSearch() {
- return search;
- }
- public void setSearch(String search) {
- this.search = search;
- }
- public String getOptions() {
- return options;
- }
- public void setOptions(String options) {
- this.options = options;
- }
- }
- public static class QuerysBean {
- /**
- * orderby : {"columns":["createTime"],"seq":"DESC"}
- * limit : {"start":0,"length":30}
- * condition : {"symbol":"LT","column":"updateTime","value":"2020-11-05T20:43:52Z"}
- */
- private OrderbyBean orderby;
- private LimitBean limit;
- private ConditionBean condition;
- private String phoneNumber;
- private String id;
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getPhoneNumber() {
- return phoneNumber;
- }
- public void setPhoneNumber(String phoneNumber) {
- this.phoneNumber = phoneNumber;
- }
- public OrderbyBean getOrderby() {
- return orderby;
- }
- public void setOrderby(OrderbyBean orderby) {
- this.orderby = orderby;
- }
- public LimitBean getLimit() {
- return limit;
- }
- public void setLimit(LimitBean limit) {
- this.limit = limit;
- }
- public ConditionBean getCondition() {
- return condition;
- }
- public void setCondition(ConditionBean condition) {
- this.condition = condition;
- }
- public static class OrderbyBean {
- /**
- * columns : ["createTime"]
- * seq : DESC
- */
- private String seq;
- private List<String> columns;
- public String getSeq() {
- return seq;
- }
- public void setSeq(String seq) {
- this.seq = seq;
- }
- public List<String> getColumns() {
- return columns;
- }
- public void setColumns(List<String> columns) {
- this.columns = columns;
- }
- }
- public static class LimitBean {
- /**
- * start : 0
- * length : 30
- */
- private int start;
- private int length;
- public int getStart() {
- return start;
- }
- public void setStart(int start) {
- this.start = start;
- }
- public int getLength() {
- return length;
- }
- public void setLength(int length) {
- this.length = length;
- }
- }
- public static class ConditionBean {
- /**
- * symbol : LT
- * column : updateTime
- * value : 2020-11-05T20:43:52Z
- */
- private String symbol;
- private String column;
- private String value;
- public String getSymbol() {
- return symbol;
- }
- public void setSymbol(String symbol) {
- this.symbol = symbol;
- }
- public String getColumn() {
- return column;
- }
- public void setColumn(String column) {
- this.column = column;
- }
- public String getValue() {
- return value;
- }
- public void setValue(String value) {
- this.value = value;
- }
- }
- }
- }
|