All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.zlyx.easy.database.local.Page Maven / Gradle / Ivy

package com.zlyx.easy.database.local;

import java.util.List;

/**
 * @Auth 赵光
 * @Describle
 * @2019年1月11日 上午10:19:55
 */
public class Page {

	/**
	 * 数据总数
	 */
	private Long total;

	/**
	 * 数据
	 */
	private List data;

	@SuppressWarnings("unchecked")
	public Page(List data, Long total) {
		this.data = (List) data;
		this.total = total;
	}

	public Long getTotal() {
		return total;
	}

	public void setTotal(Long total) {
		this.total = total;
	}

	public List getData() {
		return data;
	}

	public void setData(List data) {
		this.data = data;
	}

	@Override
	public String toString() {
		return "Page [total=" + total + ", data=" + data + "]";
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy