eight
2024-10-30 12c97309b50530c8c7f9c6d48641c79d07a44b2b
jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/service/appointment/AppointmentService.java
@@ -4,6 +4,7 @@
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;
@@ -20,7 +21,7 @@
     * @param createReqVO 创建信息
     * @return 编号
     */
    Integer createAppointment(@Valid AppointmentSaveReqVO createReqVO);
    Long createAppointment(@Valid AppointmentSaveReqVO createReqVO);
    /**
     * 更新预约
@@ -34,7 +35,7 @@
     *
     * @param id 编号
     */
    void deleteAppointment(Integer id);
    void deleteAppointment(Long id);
    /**
     * 获得预约
@@ -42,7 +43,15 @@
     * @param id 编号
     * @return 预约
     */
    AppointmentDO getAppointment(Integer id);
    AppointmentDO getAppointment(Long id);
    /**
     * 获得预约
     *
     * @param id 编号
     * @return 预约
     */
    AppointmentDO getAppointmentByPatId(String patId);
    /**
     * 获得预约分页
@@ -52,4 +61,7 @@
     */
    PageResult<AppointmentDO> getAppointmentPage(AppointmentPageReqVO pageReqVO);
}
    AppointmentDO getAppointmentExtermal(String patId);
    String appoitmentConfirm(AppointmentConfirmReqVO appointmentConfirmReqVO);
}