24 lines
965 B
TypeScript
24 lines
965 B
TypeScript
|
|
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; //检测脚本名称
|
||
|
|
}
|
||
|
|
}
|