This commit is contained in:
2023-07-26 18:05:54 +08:00
parent a4aace1e68
commit 85908b4c70
3 changed files with 51 additions and 4 deletions

View File

@@ -218,4 +218,11 @@ public interface OrderBasicInfoMapper {
List<MerchantOrderInfoVO> getMerchantOrderInfoList(@Param("dto") QueryMerchantOrderDTO dto);
List<RefundOrder> batchRefundQuery(List<String> orderCodeList);
/**
* 根据订单编号
* @param orderCodeList 订单编号列表
* @return
*/
List<OrderBasicInfo> queryOrderList(@Param("orderCodeList") List<String> orderCodeList);
}