通用配置

This commit is contained in:
sjl
2024-11-19 16:30:03 +08:00
parent dd527a4994
commit 543662a2ac
10 changed files with 329 additions and 65 deletions

View File

@@ -1,26 +1,38 @@
import type { ReqPage } from '@/api/interface'
import type { ReqPage, ResPage } from '@/api/interface'
// 检测脚本模块
export namespace TestScript {
/**
* 电能质量指标字典数据表格分页查询参数
*/
export interface ReqTestScriptParams extends ReqPage{
id: string; // 装置序号id 必填
name: string;
type: string;
}
// 检测脚本接口
export interface TestScriptBO {
export interface ResTestScript {
id?: string; //检测脚本ID
name: string; //检测脚本名称
type: string; //检测脚本类型(字典表Code字段脚本还是模板)
pattern: string;//检测脚本模式(字典表Code字段数字、模拟、比对)
valueType: string;//脚本值类型(字典表Code字段相对值脚本、绝对值脚本、无)
valueType?: string;//脚本值类型(字典表Code字段相对值脚本、绝对值脚本、无)
standardName: string;//参照标准名称
standardTime: string;//标准推行时间
state:number;//
createBy: string;
createTime: string;
updateBy: string;
updateTime: string;
createBy?: string;
createTime?: string;
updateBy?: string;
updateTime?: string;
}
// 检测脚本+分页
export interface ReqTestScriptParams extends ReqPage,TestScriptBO {
/**
* 被检设备表格查询分页返回的对象;
*/
export interface ResPqDevPage extends ResPage<ResTestScript> {
}
}
}