mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-08-25 04:29:46 +08:00
15 lines
449 B
TypeScript
15 lines
449 B
TypeScript
/** 请求的相关类型 */
|
|
declare namespace Service {
|
|
/** 后端接口返回的数据结构配置 */
|
|
interface BackendResultConfig {
|
|
/** 表示后端请求状态码的属性字段 */
|
|
codeKey: string;
|
|
/** 表示后端请求数据的属性字段 */
|
|
dataKey: string;
|
|
/** 表示后端消息的属性字段 */
|
|
msgKey: string;
|
|
/** 后端业务上定义的成功请求的状态 */
|
|
successCode: number | string;
|
|
}
|
|
}
|