Files
pqs-9100_client/frontend/src/api/device/interface/controlSource.ts
2025-03-10 19:53:52 +08:00

15 lines
352 B
TypeScript

import type { ReqPage,ResPage } from '@/api/interface'
// 被检设备模块
export namespace controlSource {
/**
* 被检设备新增、修改、根据id查询返回的对象
*/
export interface ResControl {
userPageId: string;
scriptId: string;
scriptIndex: number;
sourceId: string;
}
}