first commit

This commit is contained in:
2026-09-02 16:31:50 +08:00
commit a461727193
911 changed files with 692450 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
/** 所有 api 接口的响应数据都应该准守该格式 */
interface ApiResponseData<T> {
isSucc: boolean
code: number
data: T
message: string
}
/** 所有 api 接口的响应数据都应该准守该格式,数组类型 */
interface ApiResponseDataArray<T> {
[x: string]: number
isSucc: boolean
code: number
data: Array<T>
message: string
totalRecord: number
otherInfo: any
}