This commit is contained in:
2025-10-31 15:30:50 +08:00
parent 8db691cb66
commit 8f255a97a3
3 changed files with 44 additions and 2 deletions

View File

@@ -79,4 +79,12 @@ public interface OrderRowsMapper
* @return 京粉订单
*/
public OrderRows selectOrderRowsByOrderId(String orderId);
/**
* 根据礼金Key查询订单列表
*
* @param giftCouponKey 礼金Key
* @return 订单列表
*/
public List<OrderRows> selectOrderRowsByGiftCouponKey(@Param("giftCouponKey") String giftCouponKey);
}