huliguo
2025-04-08 07de03ccae02d00be243911a003115fe9b24f863
ruoyi-service/ruoyi-order/src/main/java/com/ruoyi/order/service/OrderService.java
@@ -5,6 +5,7 @@
import com.ruoyi.common.core.web.page.PageInfo;
import com.ruoyi.order.model.Order;
import com.ruoyi.order.util.payment.model.RefundCallbackResult;
import com.ruoyi.order.util.payment.model.UniPayCallbackResult;
import com.ruoyi.order.vo.*;
import org.springframework.web.multipart.MultipartFile;
@@ -104,5 +105,22 @@
    Integer getShopSaleNumByShopIds(List<Integer> shopIds, Integer type);
    /**
     * 确认订单
     */
    ConfirmOrderVo confirmOrder(Integer goodId,Integer type);
    /**
     * 订单支付
     */
    R orderPayment(OrderPayment orderPayment);
    /**
     * 订单支付回调通知
     */
    R orderPaymentCallback(UniPayCallbackResult uniPayCallbackResult);
    /**
     * 定时任务关闭订单
     */
    void closeOrder();
}