This commit is contained in:
make
2025-04-06 21:51:01 +08:00
commit 3792acd4c7
408 changed files with 42349 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
import { ReqPage, ResultData } from "@/api/interface/index";
export namespace NodeList {
// 查询接口
export interface ReqParams extends ReqPage {
key?: string;
}
// 保存接口
export interface saveParams {
an_id: number;
an_name: string;
an_code: string;
an_is_dir: number;
an_pid: number;
an_is_hidden: number;
}
// 删除接口
export interface delParams {
an_id?: string;
}
// 列表接口响应
export interface ResList {
id: number;
an_id: number;
an_pid: number;
an_name: string;
an_code: string;
label: string;
an_is_dir: number;
an_is_hidden: number;
created_at: number;
children: ResList[];
}
// 保存删除响应接口
export interface ResData extends ResultData {}
}