2024-04-23 12:23:43 +08:00
|
|
|
|
package com.sky.service;
|
|
|
|
|
|
2024-08-07 14:11:29 +08:00
|
|
|
|
import com.sky.dto.OrdersPaymentDTO;
|
2024-04-23 12:23:43 +08:00
|
|
|
|
import com.sky.dto.OrdersSubmitDTO;
|
2024-08-07 14:11:29 +08:00
|
|
|
|
import com.sky.vo.OrderPaymentVO;
|
2024-04-23 12:23:43 +08:00
|
|
|
|
import com.sky.vo.OrderSubmitVO;
|
|
|
|
|
|
|
|
|
|
public interface OrderService {
|
|
|
|
|
OrderSubmitVO submit(OrdersSubmitDTO ordersSubmitDTO);
|
2024-08-07 14:11:29 +08:00
|
|
|
|
|
|
|
|
|
OrderPaymentVO payment(OrdersPaymentDTO ordersPaymentDTO) throws Exception;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 支付成功,修改订单状态
|
|
|
|
|
* @param outTradeNo
|
|
|
|
|
*/
|
|
|
|
|
void paySuccess(String outTradeNo);
|
2024-04-23 12:23:43 +08:00
|
|
|
|
}
|