Files
his/com/openhis/web/outpatient/service/RegistrationService.java
2026-05-27 00:59:43 +08:00

16 lines
396 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.openhis.web.outpatient.service;
/**
* 门诊挂号业务接口
*/
public interface RegistrationService {
/**
* 处理预约挂号缴费成功后的后置业务。
*
* @param orderId 医嘱订单ID
* @param slotId 对应的排班号IDadm_schedule_slot.id用于状态流转
*/
void handlePaymentSuccess(Long orderId, Long slotId);
}