Pu Zhibing
2024-12-13 73b750200f25df08aa64124da49e7461f9de6653
DriverNTTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/service/ITOrderTransferService.java
@@ -3,6 +3,7 @@
import com.baomidou.mybatisplus.plugins.Page;
import com.baomidou.mybatisplus.service.IService;
import com.stylefeng.guns.modular.system.model.TOrderTransfer;
import com.stylefeng.guns.modular.system.util.ResultUtil;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@@ -17,6 +18,10 @@
 * @since 2020-09-02
 */
public interface ITOrderTransferService extends IService<TOrderTransfer> {
    ResultUtil grabOrder(Integer orderId, Integer uid) throws Exception;
    Map<String, Object> queryPushOrder(Integer orderId) throws Exception;
    /**
     * 根据条件查询专车订单列表
@@ -45,4 +50,14 @@
    Map<String,Object> getTransferOrderDetailById(@Param("orderId") Integer orderId);
    List<Map<String, Object>> queryOrderList(Integer state, Integer driverId) throws Exception;
    Map<String, Object> queryOrderInfo(Integer orderId) throws Exception;
    ResultUtil process(Integer orderId, Integer state, Double lon, Double lat, String address) throws Exception;
    Map<String, Object> queryMoneyInfo(Integer orderId) throws Exception;
    ResultUtil confirmFees(Integer orderId, Integer type, Double parkingFee, Double crossingFee) throws Exception;
    List<Map<String, Object>> queryMyAllOrder(Integer state, Integer uid) throws Exception;
}