This commit is contained in:
sjl
2025-03-07 13:17:11 +08:00
parent 8db814dba4
commit f68da773ab
5 changed files with 86 additions and 13 deletions

View File

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