36 lines
767 B
Java
36 lines
767 B
Java
package com.cnbm.common.page;
|
|
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @Author weihongyang
|
|
* @Date 2022/6/7 3:05 PM
|
|
* @Version 1.0
|
|
*/
|
|
@Data
|
|
@ApiModel(value = "分页数据")
|
|
public class PageData<T> implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@ApiModelProperty(value = "总记录数")
|
|
private int total;
|
|
|
|
@ApiModelProperty(value = "列表数据")
|
|
private List<T> list;
|
|
|
|
/**
|
|
* 分页
|
|
* @param list 列表数据
|
|
* @param total 总记录数
|
|
*/
|
|
public PageData(List<T> list, long total) {
|
|
this.list = list;
|
|
this.total = (int)total;
|
|
}
|
|
}
|