From 205ecdcba56836a14fdd83b41c65869900c936eb Mon Sep 17 00:00:00 2001 From: 彭雪彬 <1724387007@qq.com> Date: Mon, 14 Jul 2025 18:23:05 +0800 Subject: [PATCH] 骑手接单 --- oying-system/src/main/java/com/oying/modules/rider/service/RiderOrderRecordService.java | 15 +++++++++++++++ 1 files changed, 15 insertions(+), 0 deletions(-) diff --git a/oying-system/src/main/java/com/oying/modules/rider/service/RiderOrderRecordService.java b/oying-system/src/main/java/com/oying/modules/rider/service/RiderOrderRecordService.java index bb45f54..9ba9d0a 100644 --- a/oying-system/src/main/java/com/oying/modules/rider/service/RiderOrderRecordService.java +++ b/oying-system/src/main/java/com/oying/modules/rider/service/RiderOrderRecordService.java @@ -8,6 +8,7 @@ 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; /** * @description 服务接口 @@ -56,4 +57,18 @@ * @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); } -- Gitblit v1.9.3