package com.nanjing.water.common; import java.util.List; public class PagerResultMore extends PagerResult { /** * 其他信息 */ private M other; public M getOther() { return other; } public void setOther(M other) { this.other = other; } public PagerResultMore() { } public PagerResultMore(Integer limit, Integer page, Number total, List list, M other) { super(limit, page, total, list); this.other = other; } }