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; //设备模式 模拟 数字 比对 } // 被检设备列表 export interface DeviceList { id: string; //装置序号ID Name: string; //设备名称 Pattern?: string; //设备模式 模拟 数字 比对 Dev_Type: string;//设备类型 Dev_Chns: number; //设备通道数 Dev_Volt?: number; //额定电压(V) Dev_Curr?: number; //额定电流(A) Manufacturer?: string;//生产厂家 CreateDate?: string; //生产日期 CreateId?: string; //出厂编号 Hardware_Version?: string; //固件版本 Software_Version?: string; //软件版本 IP?: string; //IP地址 Port?: number; //端口号 IsEncryption?: string; //装置是否为加密版本 Series?: string; //装置识别码(3ds加密) Dev_Key?: string; //装置秘钥(3ds加密) SampleID?: string; //样品编号 Arrived_Date?: string; //送样日期 City_Name?: string; //所属地市名称 GD_Name?: string; //所属供电公司名称 Sub_Name?: string; //所属电站名称 Check_State: string; //检测状态 Check_Result: string; //检测结果 Report_State: string; //报告状态 Document_State: string; //归档状态 ReCheck_Num: number; //复检次数 State?: number; //状态 Create_By?: string; //创建用户 Create_Time?: string; //创建时间 Update_By?: string; //更新用户 Update_Time?: string; //更新时间 } }