From 60515ee478d12301d7e4f5ccff4f2c178af173ee Mon Sep 17 00:00:00 2001
From: guoshilong <123456>
Date: Wed, 13 Sep 2023 14:07:50 +0800
Subject: [PATCH] 航线文件查询恢复
---
src/api/http/type.ts | 9 ++++++++-
1 files changed, 8 insertions(+), 1 deletions(-)
diff --git a/src/api/http/type.ts b/src/api/http/type.ts
index 9fc4214..78de4ca 100644
--- a/src/api/http/type.ts
+++ b/src/api/http/type.ts
@@ -17,10 +17,17 @@
pagination: IPage;
};
}
+// 接口返回参数字段
+interface Field<T> {
+ code: number
+ data: T,
+ message: string
+ success: boolean
+}
// Workspace
export interface IWorkspaceResponse<T> {
code: number;
- data: T;
+ data: Field<T>;
message: string;
success:boolean;
}
--
Gitblit v1.9.3