eight
2024-08-13 faa7b8278a8da0d01f1e34bf4f961be5dd181a3e
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` })
  }
}