Fix Bug #574: fallback修复
This commit is contained in:
15
com/openhis/web/outpatient/service/RegistrationService.java
Normal file
15
com/openhis/web/outpatient/service/RegistrationService.java
Normal file
@@ -0,0 +1,15 @@
|
||||
package com.openhis.web.outpatient.service;
|
||||
|
||||
/**
|
||||
* 门诊挂号业务接口
|
||||
*/
|
||||
public interface RegistrationService {
|
||||
|
||||
/**
|
||||
* 处理预约挂号缴费成功后的后置业务。
|
||||
*
|
||||
* @param orderId 医嘱(订单)ID
|
||||
* @param slotId 对应的排班号ID(adm_schedule_slot.id),用于状态流转
|
||||
*/
|
||||
void handlePaymentSuccess(Long orderId, Long slotId);
|
||||
}
|
||||
Reference in New Issue
Block a user