15 lines
352 B
TypeScript
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;
|
|
}
|
|
} |