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

15 lines
354 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;
scriptIndex: string;
sourceId: string;
}
}