检测源

This commit is contained in:
sjl
2024-11-28 14:30:49 +08:00
parent 3c56eb2ba0
commit 6d34bcfde7
8 changed files with 395 additions and 38 deletions

View File

@@ -5,7 +5,7 @@ export namespace TestScript {
/**
* 电能质量指标字典数据表格分页查询参数
* 检测脚本表格分页查询参数
*/
export interface ReqTestScriptParams extends ReqPage{
id: string; // 装置序号id 必填
@@ -30,9 +30,9 @@ export namespace TestScript {
}
/**
* 被检设备表格查询分页返回的对象;
* 检测脚本查询分页返回的对象;
*/
export interface ResPqDevPage extends ResPage<ResTestScript> {
export interface ResTestScriptPage extends ResPage<ResTestScript> {
}
}