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

15 lines
352 B
TypeScript
Raw Normal View History

2025-03-07 13:17:11 +08:00
import type { ReqPage,ResPage } from '@/api/interface'
// 被检设备模块
export namespace controlSource {
/**
* id查询返回的对象
*/
export interface ResControl {
userPageId: string;
scriptId: string;
2025-03-07 14:00:20 +08:00
scriptIndex: number;
2025-03-08 16:56:57 +08:00
sourceId: string;
2025-03-07 13:17:11 +08:00
}
}