This commit is contained in:
2023-06-02 23:53:07 +08:00
parent afb2e49345
commit 4dedacf449
31 changed files with 1368 additions and 1236 deletions

5
src/api/api-models.ts Normal file
View File

@@ -0,0 +1,5 @@
export interface APIRoot<T> {
code: number;
message: string;
data: T;
}