标准设备,比对模式被检设备

This commit is contained in:
sjl
2025-07-09 20:12:40 +08:00
parent d2f0382bd9
commit cc848b1ffb
39 changed files with 2247 additions and 285 deletions

View File

@@ -1,33 +1,35 @@
import type { ReqPage, ResPage } from '@/api/interface'
// 被检设备模块
// 监测点模块
export namespace Monitor {
/**
* 电能质量指标字典数据表格分页查询参数
* 监测点表格分页查询参数
*/
export interface ReqPqMonParams extends ReqPage {
id: string; // 装置序号id 必填
devType?: string; // 设备名称
createTime?: string; //创建时间
name?: string; // 设备名称
}
/**
* 被检设备新增、修改、根据id查询返回的对象
* 监测点新增、修改、根据id查询返回的对象
*/
export interface ResPqMon {
id: string; //监测点ID
code: string; //默认与谐波系统监测点ID相同
devId: string; //所属设备ID
name: string; //所属母线
num: number; //监测点序号
pt: number; //PT变比
ct: number; //CT变比
ptType: string; //接线方式,字典表
busbar: string;//所属母线
name: string; //监测点名称
num: number; //线路号,监测点序号
pt: string; //PT变比
ct: string; //CT变比
connection: string; //接线方式,字典表
statInterval: number; //统计间隔
harmSysId: string; //默认与谐波系统监测点ID相同
}
/**
* 被检设备表格查询分页返回的对象;
* 监测点表格查询分页返回的对象;
*/
export interface ResPqMonPage extends ResPage<ResPqMon> {