| | |
| | | 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; |
| | |
| | | * @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; |
| | | |
| | | |
| | | /** |
| | | * 根据条件查询专车订单列表 |
| | |
| | | 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; |
| | | } |