Files
pqs-9100_client/frontend/src/api/device/interface/testSource.ts
2024-11-18 09:02:57 +08:00

20 lines
664 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import type { ReqPage } from '@/api/interface'
// 检测源模块
export namespace TestSource {
// 检测源接口
export interface TestSourceBO {
id?: string; //检测源ID
name: string; //检测源名称
pattern: string;//检测源模式(字典表Code字段数字、模拟、比对)
type: string; //检测源类型(字典表Code字段标准源、高精度设备)
devType: string;//检测源设备类型(字典表Code字段)
parameters: string;//源参数JSON字符串
}
// 检测源+分页
export interface ReqTestSourceParams extends ReqPage,TestSourceBO {
}
}