| | |
| | | import cn.lihu.jh.module.ecg.controller.admin.appointment.vo.*; |
| | | import cn.lihu.jh.module.ecg.dal.dataobject.appointment.AppointmentDO; |
| | | import cn.lihu.jh.framework.common.pojo.PageResult; |
| | | import cn.lihu.jh.framework.common.pojo.PageParam; |
| | | import cn.lihu.jh.module.ecg.feign.dto.AppointmentExternal; |
| | | |
| | | import javax.validation.Valid; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 预约 Service 接口 |
| | |
| | | AppointmentDO getAppointment(Long id); |
| | | |
| | | /** |
| | | * 获得预约 |
| | | * 获得当天的预约 根据PatID and CheckType |
| | | * |
| | | * @param id 编号 |
| | | * @param patId 编号 |
| | | * @return 预约 |
| | | */ |
| | | AppointmentDO getAppointmentByPatId(String patId); |
| | | AppointmentDO getCurAppointmentByPatIdAndCheckType(String patId, Integer checkType); |
| | | |
| | | /** |
| | | * 获得预约 |
| | | * |
| | | * @param patId 编号 |
| | | * @return 预约 |
| | | */ |
| | | List<AppointmentDO> queryAndCreateAppointmentByPatId(String patCode); |
| | | |
| | | /** |
| | | * 获得预约分页 |
| | |
| | | */ |
| | | PageResult<AppointmentDO> getAppointmentPage(AppointmentPageReqVO pageReqVO); |
| | | |
| | | AppointmentDO getAppointmentExtermal(String mzzyh); |
| | | List<AppointmentDO> getAppointmentExtermal(String patId); |
| | | |
| | | String appoitmentConfirm(AppointmentConfirmReqVO appointmentConfirmReqVO); |
| | | Integer appoitmentConfirm(AppointmentConfirmReqVO appointmentConfirmReqVO); |
| | | } |