feat: first commit

This commit is contained in:
eleanor.mao
2025-03-31 22:34:22 +08:00
commit d25187c9c8
390 changed files with 57031 additions and 0 deletions

10
src/types/common.ts Normal file
View File

@ -0,0 +1,10 @@
export interface IPaginationRequest {
page?: number; // 页码,默认值为 1
pageSize?: number; //每页的数量,默认值为 10
}
export interface IPaginationResponse {
page: number; // 当前页码
pageSize: number; // 每页的数量
hasMore: boolean; // 是否有更多数据
}