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

org.ssssssss.magicapi.model.PageResult Maven / Gradle / Ivy

package org.ssssssss.magicapi.model;

import java.util.List;

/**
 * 分页执行结果
 */
public class PageResult {

	/**
	 * 总条数
	 */
	private long total;

	/**
	 * 数据项
	 */
	private List list;

	public PageResult(long total, List list) {
		this.total = total;
		this.list = list;
	}

	public PageResult() {
	}

	public long getTotal() {
		return total;
	}

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

	public List getList() {
		return list;
	}

	public void setList(List list) {
		this.list = list;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy