ADD:检测计划添加检测配置相关

This commit is contained in:
贾同学
2025-08-26 11:13:23 +08:00
parent 300b220de2
commit 4f8fdb83d1
2 changed files with 315 additions and 158 deletions

View File

@@ -34,6 +34,7 @@ export namespace Plan {
Check_By?:string;//计划检测人
progress?: number; // 进度百分比,例如 75
children?: ResPlan[];
testConfig?: PlanTestConfig;
}
// 检测计划 + 分页
@@ -42,6 +43,7 @@ export namespace Plan {
}
export interface ReqPlan extends ResPlan {
datasourceIds:string;
sourceIds: string | null;
@@ -54,5 +56,14 @@ export namespace Plan {
devIds: string[];
}
export interface PlanTestConfig {
planId: string;
waveRecord: number;
realTime: number;
statistics: number;
flicker: number;
maxTime: number;
}
}