You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
307 B
19 lines
307 B
package cn.teammodel.common;
|
|
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author winter
|
|
* @create 2023-12-08 17:30
|
|
*/
|
|
@Data
|
|
@AllArgsConstructor
|
|
public class PageVo<T> {
|
|
private Integer totalPages;
|
|
private Long totalItems;
|
|
private List<T> content;
|
|
}
|