mirror of
https://github.com/snowykami/neo-blog.git
synced 2025-09-26 11:06:23 +00:00
15 lines
306 B
TypeScript
15 lines
306 B
TypeScript
export interface PaginationParams {
|
|
orderBy: OrderBy
|
|
desc: boolean // 是否降序
|
|
page: number
|
|
size: number
|
|
}
|
|
|
|
export enum OrderBy {
|
|
CreatedAt = 'created_at',
|
|
UpdatedAt = 'updated_at',
|
|
Heat = 'heat',
|
|
CommentCount = 'comment_count',
|
|
LikeCount = 'like_count',
|
|
ViewCount = 'view_count',
|
|
} |