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

com.soento.core.lang.Pagination Maven / Gradle / Ivy

package com.soento.core.lang;

import lombok.Getter;
import lombok.Setter;

/**
 * @author soento
 */
@Getter
@Setter
public class Pagination extends BaseObject {
    /**
     * 当前页
     */
    private int current = 1;
    /**
     * 每页长度
     */
    private int pageSize = 10;
    /**
     * 总记录数
     */
    private int total = 0;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy