mirror of
https://github.com/un-pany/v3-admin-vite.git
synced 2025-04-22 03:49:19 +08:00
7 lines
141 B
TypeScript
7 lines
141 B
TypeScript
/** 所有 api 接口的响应数据都应该准守该格式 */
|
|
interface IApiResponseData<T> {
|
|
code: number
|
|
data: T
|
|
message: string
|
|
}
|