This commit is contained in:
Putoo
2026-04-25 16:26:07 +08:00
parent 62d5562ca7
commit 5153a4e1e7
19 changed files with 411 additions and 699 deletions

View File

@@ -0,0 +1,8 @@
export interface IResultData<T = unknown> {
code: number
msg: string
data?: T
ErrorData?: unknown
timestamp?: string
}