比对检测计划

This commit is contained in:
sjl
2025-07-21 13:47:56 +08:00
parent c8f3b4eddc
commit e29f25653e
31 changed files with 1174 additions and 673 deletions

View File

@@ -28,6 +28,10 @@ export namespace Plan {
reportTemplateVersion:string;
dataRule:string;//数据处理原则
standardDevIdList:string[];
standardDevMap:Map<string,number>;//标准设备
testItems:string[];//测试项
Check_By?:string;//计划检测人
progress?: number; // 进度百分比,例如 75
children?: ResPlan[];
}
@@ -40,11 +44,13 @@ export namespace Plan {
export interface ReqPlan extends ResPlan {
datasourceIds:string;
sourceIds: string;
sourceIds: string | null;
planId:string;
scriptName: string ;
errorSysName: string;
sourceName: string ;
standardDevNameStr: string;
testItemNameStr:string;
devIds: string[];
}