Files
pqs-9100_client/frontend/src/api/device/interface/testScript.ts

39 lines
1.2 KiB
TypeScript
Raw Normal View History

2024-11-19 16:30:03 +08:00
import type { ReqPage, ResPage } from '@/api/interface'
// 检测脚本模块
export namespace TestScript {
/**
*
*/
export interface ReqTestScriptParams extends ReqPage {
id: string // 装置序号id 必填
name: string
type: string
pattern: string
}
2024-11-19 16:30:03 +08:00
2024-10-31 08:51:30 +08:00
// 检测脚本接口
2024-11-19 16:30:03 +08:00
export interface ResTestScript {
id?: string //检测脚本ID
name: string //检测脚本名称
type: string //设定0为脚本1为模板
pattern: string //检测脚本模式(字典表Code字段数字、模拟、比对)
valueType?: string //脚本值类型(字典表Code字段相对值脚本、绝对值脚本、无)
standardName: string //参照标准名称
standardTime: string //标准推行时间
state?: number //
createBy?: string
createTime?: string
updateBy?: string
updateTime?: string
selectedValue?: string
ratedCurr?: number
ratedVolt?: number
}
2024-10-31 08:51:30 +08:00
/**
*
*/
export interface ResTestScriptPage extends ResPage<ResTestScript> {}
}