彭雪彬
2025-07-14 22733a6ca924ecbf4971f936a1a1138d1112f12d
oying-system/src/main/java/com/oying/modules/rider/service/RiderOrderRecordService.java
@@ -8,6 +8,8 @@
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 服务接口
@@ -56,4 +58,25 @@
    * @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);
}