xyz.erupt.core.view.Page Maven / Gradle / Ivy
package xyz.erupt.core.view;
import lombok.Getter;
import lombok.Setter;
import xyz.erupt.annotation.config.Comment;
import java.util.Collection;
import java.util.Map;
/**
* @author YuePeng
* date 2018-10-12.
*/
@Getter
@Setter
public class Page {
private int pageIndex;
private int pageSize;
private long totalPage;
private Long total;
private String sort;
public static final int PAGE_MAX_DATA = 1000000;
@Comment("Map → value 为复杂对象需做处理,如:{region:{id:1,name:'xxxx'}},则需转换成:region_name 前端才可正常渲染")
private Collection
© 2015 - 2024 Weber Informatics LLC | Privacy Policy