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

37 lines
926 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
// 监测点模块
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-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 必填
name?: string; // 设备名称
2024-11-12 18:56:33 +08:00
}
2024-12-06 09:18:13 +08:00
/**
* id查询返回的对象
2024-11-12 18:56:33 +08:00
*/
2024-12-06 09:18:13 +08:00
export interface ResPqMon {
id: string; //监测点ID
devId: string; //所属设备ID
busbar: string;//所属母线
name: string; //监测点名称
num: number; //线路号,监测点序号
pt: string; //PT变比
ct: string; //CT变比
connection: string; //接线方式,字典表
statInterval: number; //统计间隔
harmSysId: string; //默认与谐波系统监测点ID相同
2024-12-06 09:18:13 +08:00
}
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
}