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

35 lines
897 B
TypeScript
Raw Normal View History

2024-12-06 09:18:13 +08:00
import type { ReqPage, ResPage } from '@/api/interface'
2024-11-12 18:56:33 +08:00
// 被检设备模块
export namespace Monitor {
2024-12-06 09:18:13 +08:00
2024-11-12 18:56:33 +08:00
/**
*
*/
2024-12-06 09:18:13 +08:00
export interface ReqPqMonParams extends ReqPage {
2024-11-12 18:56:33 +08:00
id: string; // 装置序号id 必填
devType?: string; // 设备名称
2024-12-06 09:18:13 +08:00
createTime?: string; //创建时间
2024-11-12 18:56:33 +08:00
}
2024-12-06 09:18:13 +08:00
/**
2024-11-12 18:56:33 +08:00
* id查询返回的对象
*/
2024-12-06 09:18:13 +08:00
export interface ResPqMon {
id: string; //监测点ID
code: string; //默认与谐波系统监测点ID相同
devId: string; //所属设备ID
name: string; //所属母线
num: number; //监测点序号
pt: number; //PT变比
ct: number; //CT变比
ptType: string; //接线方式,字典表
}
2024-11-12 18:56:33 +08:00
2024-12-06 09:18:13 +08:00
/**
2024-11-12 18:56:33 +08:00
*
*/
export interface ResPqMonPage extends ResPage<ResPqMon> {
}
2024-12-06 09:18:13 +08:00
}