This commit is contained in:
sjl
2024-10-24 09:38:12 +08:00
parent 4ddc5d04bd
commit 3d6285498a
10 changed files with 287 additions and 159 deletions

View File

@@ -4,14 +4,18 @@ export namespace ErrorSystem {
export interface ErrorSystemList {
id: string;//误差体系表Id
name: string;//误差体系名称
publishTime:string;//发布时间
year:string;//标准实施年份
level:string;//使用设备等级
details?: Array<{
measured: string;//被测量
deviceLevel: string;//检测装置级别
condition: string;//测量条件
maxErrorValue: string;//最大误差
}>; // 详细信息
state:string;//状态
}
// 查看详细误差体系
export interface ErrorSystemDetail {
measured: string;//被测量
deviceLevel: string;//检测装置级别
condition: string;//测量条件
maxErrorValue: string;//最大误差
}
}