2024-12-06 09:18:13 +08:00
|
|
|
|
import type { ReqPage, ResPage } from '@/api/interface'
|
2024-11-12 18:56:33 +08:00
|
|
|
|
|
2025-07-09 20:12:40 +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
|
|
|
|
/**
|
2025-07-09 20:12:40 +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 必填
|
2025-07-09 20:12:40 +08:00
|
|
|
|
name?: string; // 设备名称
|
|
|
|
|
|
|
2024-11-12 18:56:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2024-12-06 09:18:13 +08:00
|
|
|
|
/**
|
2025-07-09 20:12:40 +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
|
2025-11-10 14:44:20 +08:00
|
|
|
|
busbar: string;//母线名称
|
2025-07-09 20:12:40 +08:00
|
|
|
|
name: string; //监测点名称
|
|
|
|
|
|
num: number; //线路号,监测点序号
|
|
|
|
|
|
pt: string; //PT变比
|
|
|
|
|
|
ct: string; //CT变比
|
|
|
|
|
|
connection: string; //接线方式,字典表
|
|
|
|
|
|
statInterval: number; //统计间隔
|
|
|
|
|
|
harmSysId: string; //默认与谐波系统监测点ID相同
|
2025-09-17 14:08:58 +08:00
|
|
|
|
checkFlag: number;//是否参与检测0否1是
|
2025-11-04 08:54:40 +08:00
|
|
|
|
resultType:string|null; //检测结果类型
|
2024-12-06 09:18:13 +08:00
|
|
|
|
}
|
2024-11-12 18:56:33 +08:00
|
|
|
|
|
2024-12-06 09:18:13 +08:00
|
|
|
|
/**
|
2025-07-09 20:12:40 +08:00
|
|
|
|
* 监测点表格查询分页返回的对象;
|
2024-11-12 18:56:33 +08:00
|
|
|
|
*/
|
|
|
|
|
|
export interface ResPqMonPage extends ResPage<ResPqMon> {
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2024-12-06 09:18:13 +08:00
|
|
|
|
}
|