update 批量订单退款接口

This commit is contained in:
2023-08-31 17:31:19 +08:00
parent 7fe676efdb
commit fa5ecb02dd
4 changed files with 42 additions and 3 deletions

View File

@@ -338,8 +338,11 @@ public interface IOrderBasicInfoService {
* @param orderCode 订单编号
*/
void retryRefundOrder(String orderCode) throws BaseAdaPayException;
void retryRefundOrder(OrderBasicInfo orderBasicInfo) throws BaseAdaPayException;
void returnUpdateOrderBasicInfo(OrderBasicInfo orderBasicInfo, TransactionRecordsData data);
OrderSettleResult orderPaymentSettlementAndRefund(OrderBasicInfo orderBasicInfo);
void returnUpdateOrderBasicInfo(OrderBasicInfo orderBasicInfo, TransactionRecordsData data);
OrderDetail returnUpdateOrderDetail(OrderBasicInfo orderBasicInfo, TransactionRecordsData data);
}