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