Fix Bug #574: fallback修复

This commit is contained in:
2026-05-27 00:59:43 +08:00
parent c5738202c9
commit a92d82d6dd
3 changed files with 49 additions and 58 deletions

View File

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