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

top.isopen.commons.springboot.bean.PageResponse Maven / Gradle / Ivy

There is a newer version: 1.2.8
Show newest version
package top.isopen.commons.springboot.bean;

import lombok.Data;
import lombok.EqualsAndHashCode;

import java.util.List;

/**
 * 分页响应体
 *
 * @author TimeChaser
 * @version 1.0
 * @since 2023/5/10 16:15
 */
@Data
@EqualsAndHashCode(callSuper = true)
public class PageResponse extends BaseResponse {

    private static final long serialVersionUID = 439154896956826690L;

    private Long current;
    private Long size;
    private Long total;
    private List data;

    public static  PageResponse of(Long current, Long size, Long total, List data) {
        PageResponse pageResponse = new PageResponse<>();
        pageResponse.setCurrent(current);
        pageResponse.setSize(size);
        pageResponse.setTotal(total);
        pageResponse.setData(data);
        return pageResponse;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy