Initial commit

This commit is contained in:
libertyspy
2026-02-08 15:59:14 +08:00
parent 015030d650
commit 9ded6b757c
126 changed files with 2007 additions and 14912 deletions

View File

@@ -34,3 +34,9 @@ export interface PageableResponse<T = any> extends BasicResponse {
[key: string]: unknown;
}
export interface ApiPaginationQuery {
page: number;
limit: number;
keyword: NullableString;
}