Files
pqs-9100_client/frontend/src/api/error/interface/index.ts

22 lines
668 B
TypeScript
Raw Normal View History

2024-10-23 19:30:11 +08:00
// 误差体系模块
export namespace ErrorSystem {
// 误差体系列表
export interface ErrorSystemList {
id: string;//误差体系表Id
name: string;//误差体系名称
2024-10-24 09:38:12 +08:00
publishTime:string;//发布时间
2024-10-23 19:30:11 +08:00
year:string;//标准实施年份
level:string;//使用设备等级
2024-10-24 09:38:12 +08:00
state:string;//状态
2024-10-23 19:30:11 +08:00
}
2024-10-24 09:38:12 +08:00
// 查看详细误差体系
export interface ErrorSystemDetail {
measured: string;//被测量
deviceLevel: string;//检测装置级别
2024-10-28 13:41:14 +08:00
measurementType: string;//测量类型
2024-10-24 09:38:12 +08:00
condition: string;//测量条件
maxErrorValue: string;//最大误差
}
2024-10-23 19:30:11 +08:00
}