| | |
| | | |
| | | // 设备 VO |
| | | export interface DeviceVO { |
| | | id: number // id |
| | | devCodeIntrinsic: string |
| | | devCodeHosp: string |
| | | devCodeDept: string |
| | | devId: string // 设备编号 |
| | | category: string // 分类名 |
| | | brand: string // 品牌 |
| | | model: string // 型号 |
| | | purchaseDate: number // 采购日期 |
| | | state: number //状态 |
| | | comment: string // 备注 |
| | | id?: number // id |
| | | devCodeIntrinsic?: string |
| | | devCodeHosp?: string |
| | | devCodeDept?: string |
| | | devId?: string // 设备编号 |
| | | category?: string // 分类名 |
| | | brand?: string // 品牌 |
| | | model?: string // 型号 |
| | | purchaseDate?: number // 采购日期 |
| | | state?: number //状态 |
| | | comment?: string // 备注 |
| | | } |
| | | |
| | | // 设备统计 VO |