| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.oying.utils.PageResult; |
| | | import com.oying.utils.R; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | /** |
| | | * @description 服务接口 |
| | |
| | | * @throws IOException / |
| | | */ |
| | | void download(List<RiderOrderRecord> all, HttpServletResponse response) throws IOException; |
| | | |
| | | /** |
| | | * 骑手接单 |
| | | * @param orderNum |
| | | * @throws IOException / |
| | | */ |
| | | R riderGrabOrder(String orderNum); |
| | | |
| | | /** |
| | | * 骑手取消接单 |
| | | * @param orderNum |
| | | * @throws IOException / |
| | | */ |
| | | R riderCancelOrder(String orderNum); |
| | | |
| | | /** |
| | | * 修改骑手端订单状态 |
| | | * @param orderNum |
| | | * @throws IOException / |
| | | */ |
| | | void updateRiderOrderStatus(String orderNum, String orderStatus); |
| | | } |