已修改角色、新增用户、检测源列表、被检设备列表、检测脚本列表
This commit is contained in:
24
frontend/src/api/testScript/interface/index.ts
Normal file
24
frontend/src/api/testScript/interface/index.ts
Normal file
@@ -0,0 +1,24 @@
|
||||
import type { ReqPage } from '@/api/interface'
|
||||
|
||||
// 检测脚本模块
|
||||
export namespace TestScript {
|
||||
|
||||
// 检测脚本列表
|
||||
export interface ResTestScriptList {
|
||||
id: string; //检测脚本ID
|
||||
testScriptModel: string; //检测脚本模式 模拟 数字 比对
|
||||
testScriptType: string; //检测脚本类型 脚本 模板
|
||||
testScriptValueType: string;//检测脚本值类型名称 相对值 绝对值
|
||||
testScriptName: string; //检测脚本名称
|
||||
}
|
||||
|
||||
// 检测脚本参数
|
||||
// 检测脚本参数
|
||||
export interface ReqTestScriptParams extends ReqPage {
|
||||
id: string; //检测脚本ID
|
||||
testScriptModel: string; //检测脚本模式 模拟 数字 比对
|
||||
testScriptType: string; //检测脚本类型 脚本 模板
|
||||
testScriptValueType: string;//检测脚本值类型名称 相对值 绝对值
|
||||
testScriptName: string; //检测脚本名称
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user