eight
2024-08-20 1f4db481c48e6beb5c787f126576e63363b10a13
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import request from '@/config/axios'
 
export interface RoomBedVO {
  roomId: number // 诊室编号
  bedNo: string // 诊疗床编号
}
 
// 医生 API
export const DoctorApi = {
 
  // 下一位患者
  nextPatient: async (params: RoomBedVO) => {
    return await request.get({ url: `/ecg/doctor/nextpatient`, params })
  }
 
}