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,34 +1,30 @@
import { ReqPage, ResultData } from "@/api/interface/index";
export namespace taskPlan {
// 查询接口
export interface ReqParams extends ReqPage {
key?: string;
}
// 保存接口
export interface saveParams {
pt_enable: number; // Y 任务开关,0=关闭,1=开启
pt_limit: number; // Y 任务频率,单位:秒
pt_id?: number; // Y ID
pt_name: any;
pt_name?: any;
pt_code?: any;
}
// 删除接口
export interface delParams {
pt_id?: string;
}
// 列表接口响应
export interface ResList {
pt_id: number; // Y id
pt_enable: any; // Y 任务开关,0=关闭,1=开启
pt_limit?: any | undefined; // Y 任务频率
created_at: any; // Y 创建时间
pt_name: any;
pt_code?: any;
pt_last_exec: any;
}
// map接口
export interface ResMap {
p_id: number;
p_name: string;
}
// 保存删除响应接口
export interface ResData extends ResultData {}
}