临时接口,订单退款

This commit is contained in:
2023-05-31 13:59:27 +08:00
parent 0c1144d0e5
commit 922c0428b7
11 changed files with 112 additions and 6 deletions

View File

@@ -208,4 +208,6 @@ public interface OrderBasicInfoMapper {
int batchUpdateOrderDetail(@Param("list") List<OrderDetail> orderDetailList);
List<OrderDetail> getOrderDetailList(List<String> orderCodes);
List<OrderBasicInfo> tempQueryWeChatRefundOrders(@Param("startTime") String startTime, @Param("endTime") String endTime);
}

View File

@@ -1,6 +1,7 @@
package com.jsowell.pile.mapper;
import com.jsowell.pile.domain.WxpayRefundCallback;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@@ -18,4 +19,6 @@ public interface WxpayRefundCallbackMapper {
// int updateByPrimaryKey(WxpayRefundCallback record);
List<WxpayRefundCallback> selectWxpayRefundCallbackList(List<String> outTradeNoList);
List<WxpayRefundCallback> selectByOrderCodeList(@Param("orderCodes") List<String> orderCodeList);
}