From 78851285202a040f8ddf998c067cd462874c1cb9 Mon Sep 17 00:00:00 2001 From: xuhy <3313886187@qq.com> Date: 星期四, 19 十月 2023 14:55:27 +0800 Subject: [PATCH] 配置修改 --- DispatchTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/service/IOrderTaxiService.java | 43 ------------------------------------------- 1 files changed, 0 insertions(+), 43 deletions(-) diff --git a/DispatchTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/service/IOrderTaxiService.java b/DispatchTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/service/IOrderTaxiService.java index 8136445..8f0bbb6 100644 --- a/DispatchTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/service/IOrderTaxiService.java +++ b/DispatchTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/service/IOrderTaxiService.java @@ -2,50 +2,7 @@ import com.baomidou.mybatisplus.service.IService; import com.stylefeng.guns.modular.system.model.OrderTaxi; -import com.stylefeng.guns.modular.system.util.ResultUtil; -import com.stylefeng.guns.modular.system.warpper.BaseWarpper; - -import java.util.List; -import java.util.Map; public interface IOrderTaxiService extends IService<OrderTaxi> { - /** - * 获取订单列表 - * @param search - * @param orderSource - * @param state - * @param uid - * @return - * @throws Exception - */ - List<Map<String, Object>> queryOrderList(String search, String orderSource, String state, Integer pageNum, Integer size, Integer uid) throws Exception; - - /** - * 获取订单详情 - * @param orderId - * @return - * @throws Exception - */ - Map<String, Object> queryOrderInfo(Integer orderId) throws Exception; - - - /** - * 取消订单 - * @param orderId - * @return - * @throws Exception - */ - ResultUtil cancelOrder(Integer orderId) throws Exception; - - - - /** - * 出租车下单操作 - * @param orderTaxi - * @param uid - * @return - * @throws Exception - */ - ResultUtil<BaseWarpper> taxiOrder(OrderTaxi orderTaxi, Integer uid) throws Exception; } -- Gitblit v1.7.1