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

org.noear.wood.IPage Maven / Gradle / Ivy

There is a newer version: 1.3.14
Show newest version
package org.noear.wood;

import java.io.Serializable;
import java.util.List;

/**
 * @author noear 2021/11/11 created
 */
public interface IPage extends Serializable {
    /**
     * 记录
     * */
    List getList();

    /**
     * 总记录数
     * */
    long getTotal();

    /**
     * 页长
     * */
    int getSize();

    /**
     * 总而数
     * */
    long getPages();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy