1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- /**
- * Copyright (c) 2011-2014, hubin (jobob@qq.com).
- * <p>
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not
- * use this file except in compliance with the License. You may obtain a copy of
- * the License at
- * <p>
- * http://www.apache.org/licenses/LICENSE-2.0
- * <p>
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- * License for the specific language governing permissions and limitations under
- * the License.
- */
- package com.baomidou.mybatisplus.plugins;
- import java.util.Collections;
- import java.util.List;
- import java.util.Map;
- import com.baomidou.mybatisplus.plugins.pagination.Pagination;
- /**
- * <p>
- * 实现分页辅助类
- * </p>
- *
- * @author hubin
- * @Date 2016-03-01
- */
- public class Page<T> extends Pagination {
- private static final long serialVersionUID = 1L;
- /**
- * 查询数据列表
- */
- private List<T> records = Collections.emptyList();
- /**
- * 查询参数
- */
- private Map<String, Object> condition;
- public Page() {
- /* 注意,传入翻页参数 */
- }
- public Page(int current, int size) {
- super(current, size);
- }
- public Page(int current, int size, String orderByField) {
- super(current, size);
- this.setOrderByField(orderByField);
- }
- public List<T> getRecords() {
- return records;
- }
- public Page<T> setRecords(List<T> records) {
- this.records = records;
- return this;
- }
- public Map<String, Object> getCondition() {
- return condition;
- }
- public Page<T> setCondition(Map<String, Object> condition) {
- this.condition = condition;
- return this;
- }
- @Override
- public String toString() {
- StringBuilder pg = new StringBuilder();
- pg.append(" Page:{ [").append(super.toString()).append("], ");
- if (records != null) {
- pg.append("records-size:").append(records.size());
- } else {
- pg.append("records is null");
- }
- return pg.append(" }").toString();
- }
- }
|