This commit is contained in:
Your Name
2026-04-15 12:00:09 +08:00
parent 2962da0907
commit 845d68110b
426 changed files with 43961 additions and 34179 deletions

View File

@@ -1,18 +1,14 @@
import { ReqPage, ResultData } from "@/api/interface/index";
export namespace DriveList {
// 查询接口
export interface ReqParams extends ReqPage {
key?: string;
}
// 保存接口
export interface saveParams {
a_id?: number;
}
// 删除接口
export interface delParams {
a_id?: string;
}
// 列表接口响应
export interface ResList {
a_id: number;
a_status: any;
@@ -24,7 +20,5 @@ export namespace DriveList {
description: any;
created_at: string;
}
// 保存删除响应接口
export interface ResData extends ResultData {}
}