This commit is contained in:
caozehui
2025-01-04 14:09:01 +08:00
parent 2d993b2f73
commit 23e72f38a6
3 changed files with 226 additions and 26 deletions

View File

@@ -43,21 +43,22 @@ export namespace CheckData {
}
// 用来描述检测脚本类型
export interface ScriptItem{
export interface ScriptItem {
id: string,
code: string,
scriptName: string,
}
// 用来描述 检测数据-左侧树结构
export interface TreeItem{
scriptTypeName: string|null,
sourceDesc: string|null,
harmNum: number|null,
index:number|null,
fly:number|null,
children?: TreeItem[]
export interface TreeItem {
scriptTypeName: string | null,
sourceDesc: string | null,
harmNum: number | null,
index: number | null,
fly: number | null,
children: TreeItem[] | null,
}
// 用来描述 通道检测结果
export enum ChnCheckResultEnum {
UNKNOWN = -1,