21 lines
708 B
TypeScript
21 lines
708 B
TypeScript
|
|
import type { ReqPage } from '@/api/interface'
|
||
|
|
|
||
|
|
// 检测源模块
|
||
|
|
export namespace TestSource {
|
||
|
|
|
||
|
|
// 检测源列表
|
||
|
|
export interface ResTestSourceList {
|
||
|
|
id: string; //检测源ID
|
||
|
|
testSourceName: string; //检测源名称
|
||
|
|
testSourceType: string; //检测源类型
|
||
|
|
testSourceModel: string; //检测源模式 标准源 高精度源
|
||
|
|
}
|
||
|
|
|
||
|
|
// 检测源参数
|
||
|
|
export interface ReqTestSourceParams extends ReqPage {
|
||
|
|
id: string; //检测源ID
|
||
|
|
testSourceName: string; //检测源名称
|
||
|
|
testSourceType: string; //检测源类型
|
||
|
|
testSourceModel: string; //检测源模式 标准源 高精度源
|
||
|
|
}
|
||
|
|
}
|