src/api/ecg/room/index.ts
@@ -3,7 +3,8 @@ // 诊室和诊疗床 VO export interface RoomVO { id: number // roomNo: string // 诊室编号 roomId: number // 诊室编号 roomName: string // 诊室名称 bedNo: string // 诊疗床编号 } @@ -37,5 +38,10 @@ // 导出诊室和诊疗床 Excel exportRoom: async (params) => { return await request.download({ url: `/clinic/room/export-excel`, params }) }, // 导出诊室和诊疗床 Excel getSimpleRoomList: async () => { return await request.get({ url: `/clinic/room/simple-list` }) } }