package com.nanjing.water.common;

import java.util.List;

public class PagerResultMore<T, M> extends PagerResult<T> {
    /**
     * 其他信息
     */
    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<T> list, M other) {
        super(limit, page, total, list);
        this.other = other;
    }
}