31 lines
1.1 KiB
TypeScript
31 lines
1.1 KiB
TypeScript
|
|
import type { ReqPage } from '@/api/interface'
|
||
|
|
|
||
|
|
// 被检设备模块
|
||
|
|
export namespace Device {
|
||
|
|
|
||
|
|
// 被检设备列表
|
||
|
|
export interface ResDeviceList {
|
||
|
|
id: string; //被检设备ID
|
||
|
|
deviceName: string; //检测设备名称
|
||
|
|
deviceType: string; //检测设备类型
|
||
|
|
deviceChannels: string;//设备通道数
|
||
|
|
PlanName: string; //所属计划名称
|
||
|
|
deviceUn: string; //设备额定电压
|
||
|
|
deviceIn: string; //设备额定电流
|
||
|
|
deviceCompany: string;//设备厂家
|
||
|
|
deviceModel: string; //设备模式 模拟 数字 比对
|
||
|
|
}
|
||
|
|
|
||
|
|
// 被检设备参数
|
||
|
|
export interface ReqDeviceParams extends ReqPage {
|
||
|
|
id: string; //被检设备ID
|
||
|
|
deviceName: string; //检测设备名称
|
||
|
|
deviceType: string; //检测设备类型
|
||
|
|
deviceChannels: string;//设备通道数
|
||
|
|
PlanName: string; //所属计划名称
|
||
|
|
deviceUn: string; //设备额定电压
|
||
|
|
deviceIn: string; //设备额定电流
|
||
|
|
deviceCompany: string;//设备厂家
|
||
|
|
deviceModel: string; //设备模式 模拟 数字 比对
|
||
|
|
}
|
||
|
|
}
|