You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
465 B
Java
21 lines
465 B
Java
package cn.iocoder.dashboard.common.pojo;
|
|
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.List;
|
|
|
|
@ApiModel("分页结果")
|
|
@Data
|
|
public final class PageResult<T> implements Serializable {
|
|
|
|
@ApiModelProperty(value = "数据", required = true)
|
|
private List<T> list;
|
|
|
|
@ApiModelProperty(value = "总量", required = true)
|
|
private Long total;
|
|
|
|
}
|