35 lines
939 B
TypeScript
35 lines
939 B
TypeScript
|
|
import type { ReqPage,ResPage } from '@/api/interface'
|
|||
|
|
|
|||
|
|
// 被检设备模块
|
|||
|
|
export namespace Monitor {
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 电能质量指标字典数据表格分页查询参数
|
|||
|
|
*/
|
|||
|
|
export interface ReqPqMonParams extends ReqPage{
|
|||
|
|
id: string; // 装置序号id 必填
|
|||
|
|
devType?: string; // 设备名称
|
|||
|
|
createTime?:string; //创建时间
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 被检设备新增、修改、根据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; //接线方式,字典表
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 被检设备表格查询分页返回的对象;
|
|||
|
|
*/
|
|||
|
|
export interface ResPqMonPage extends ResPage<ResPqMon> {
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|