package com.supersavedriving.user.modular.system.service;
|
|
|
import com.baomidou.mybatisplus.service.IService;
|
import com.supersavedriving.user.modular.system.model.TOrderCheck;
|
import com.supersavedriving.user.modular.system.util.ResultUtil;
|
import com.supersavedriving.user.modular.system.warpper.*;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 订单 服务类
|
* </p>
|
*
|
* @author administrator
|
* @since 2025-07-23
|
*/
|
public interface TOrderCheckService extends IService<TOrderCheck> {
|
|
|
ResultUtil travelOrder(Integer uid, CheckOrder checkOrder);
|
|
|
ResultUtil getCheckOrderInfo(String userLat, String userLng);
|
|
|
ResultUtil cancelOrder(Integer uid, Long orderId);
|
|
ResultUtil payCheckOrder(Integer uid, PayCheckOrder payCheckOrder) throws Exception ;
|
|
ResultUtil orderPayCallback(Integer type,TOrderCheck orderCheck, String s1) throws Exception;
|
|
|
CheckOrderInfoWarpper queryOrderInfo(Integer uid, Long orderId);
|
|
|
List<CheckOrderListWarpper> queryCheckOrderList(Integer uid, Integer state, Integer pageNum, Integer pageSize);
|
|
|
ResultUtil orderAppraise(Integer uid, Long orderId, Integer score, String content);
|
|
List<CheckCouponWarpper> queryPayCouponList(Integer uid, Long orderId);
|
|
}
|