17 lines
507 B
TypeScript
17 lines
507 B
TypeScript
|
|
// 误差体系模块
|
||
|
|
export namespace ErrorSystem {
|
||
|
|
// 误差体系列表
|
||
|
|
export interface ErrorSystemList {
|
||
|
|
id: string;//误差体系表Id
|
||
|
|
name: string;//误差体系名称
|
||
|
|
year:string;//标准实施年份
|
||
|
|
level:string;//使用设备等级
|
||
|
|
details?: Array<{
|
||
|
|
measured: string;//被测量
|
||
|
|
deviceLevel: string;//检测装置级别
|
||
|
|
condition: string;//测量条件
|
||
|
|
maxErrorValue: string;//最大误差
|
||
|
|
}>; // 详细信息
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|