From b919b454bccc18d67b7109a09357499d09211eac Mon Sep 17 00:00:00 2001 From: 彭雪彬 <1724387007@qq.com> Date: Thu, 17 Jul 2025 18:07:08 +0800 Subject: [PATCH] Merge branch 'xin' into pxb --- oying-system/src/main/java/com/oying/modules/rider/service/RiderOrderRecordService.java | 18 ++++++++++++++++++ 1 files changed, 18 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 b7e36e8..aac7c8a 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 @@ -2,6 +2,8 @@ import com.oying.modules.rider.domain.RiderOrderRecord; import com.oying.modules.rider.domain.dto.RiderOrderRecordQueryCriteria; + +import java.text.ParseException; import java.util.List; import java.io.IOException; import javax.servlet.http.HttpServletResponse; @@ -60,6 +62,7 @@ */ void download(List<RiderOrderRecord> all, HttpServletResponse response) throws IOException; + /** * 骑手接单 * @param orderNum @@ -87,4 +90,19 @@ * @throws IOException / */ R riderOperationOrder(OrderRiderOperationVo orderRiderOperation); + + /** + * 骑手完成订单状态 + * @param orderNum + * @throws IOException / + */ + R riderCompleteOrder(String orderNum); + + /** + * 骑手完成订单修改接口 + * @param orderNum + * @param + * @throws IOException / + */ + void updateRiderOrderInfo(String orderNum) ; } -- Gitblit v1.9.3