11
WXL
4 小时以前 f030d8a9607cef32ee41e01d96817c7e47681602
src/api/ecg/appointment/index.ts
@@ -3,7 +3,8 @@
// 预约 VO
export interface AppointmentVO {
  id: number,
  applyNo: string
  applyNo: string  // 预约申请编号
  episodeId: string //就诊流水号
  patSrc: number
  patId: string // 患者编号
  patName: string // 患者姓名
@@ -18,7 +19,6 @@
  patWardCode: string // 患者所在病区代码
  patWardDesc: string // 患者所在病区名称
  patBedNo: string // 床号
  bookId: string // 预约编号
  bookDate: Date // 预约日期
  bookTimeslot: number // 预约时间段
  bookTime: Date // 预约发生时间, 点击预约的时间
@@ -40,8 +40,8 @@
  },
  //
  getCurAppointmentByPatId: async (patId: string) => {
    return await request.get({ url: `/ecg/appointment/get-current-by-patient?patId=` + patId })
  getCurAppointmentByPatIdAndCheckType: async (patId: string, checkType: number) => {
    return await request.get({ url: `/ecg/appointment/get-current-by-patient?patId=` + patId + '&checkType=' + checkType })
  },
  // 从HIS或者DB查询预约详情