| | |
| | | import request from '@/config/axios' |
| | | |
| | | export interface RoomProfileVO { |
| | | roomId: number | null // 诊室编号 |
| | | roomName: string | null |
| | | bedNum: number | null // 诊疗床数量 |
| | | callingScreenType: number | null // 叫号屏类型 |
| | | } |
| | | |
| | | export interface RoomBedVO { |
| | | roomId: number | null // 诊室编号 |
| | | roomName: string | null |
| | |
| | | bedNo: string // 诊疗床编号 |
| | | patId: string // 患者编号 |
| | | checkType: number // 检查类型 |
| | | jumpFlag: number // 插队标记 |
| | | roomId_operator: number |
| | | bedNo_operator: string |
| | | jumpFlag?: number // 插队标记 |
| | | roomId_operator: number | null |
| | | bedNo_operator: string | null |
| | | } |
| | | |
| | | export interface PatientStatisticVO { |