From 20bf12dc209329b29ac96d01efabaa3a0ff30cb2 Mon Sep 17 00:00:00 2001 From: Pu Zhibing <393733352@qq.com> Date: 星期日, 26 一月 2025 17:27:31 +0800 Subject: [PATCH] Merge branch 'master' of http://120.76.84.145:10101/gitblit/r/java/qijisheng --- ruoyi-service/ruoyi-order/src/main/java/com/ruoyi/order/service/OrderService.java | 12 ++++++++---- 1 files changed, 8 insertions(+), 4 deletions(-) diff --git a/ruoyi-service/ruoyi-order/src/main/java/com/ruoyi/order/service/OrderService.java b/ruoyi-service/ruoyi-order/src/main/java/com/ruoyi/order/service/OrderService.java index 76d0db7..7654f37 100644 --- a/ruoyi-service/ruoyi-order/src/main/java/com/ruoyi/order/service/OrderService.java +++ b/ruoyi-service/ruoyi-order/src/main/java/com/ruoyi/order/service/OrderService.java @@ -6,8 +6,7 @@ import com.ruoyi.order.model.Order; import com.ruoyi.order.util.payment.model.RefundCallbackResult; import com.ruoyi.order.vo.*; -import org.omg.CORBA.INTERNAL; -import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.multipart.MultipartFile; import java.util.List; @@ -26,7 +25,7 @@ boolean check(Order order, Integer shopId, Long userId); - void writeOff(String id,Integer shopId, Integer technicianId); + void writeOff(String id,Integer shopId, String technicianId); /** @@ -98,7 +97,7 @@ * @param goodsId * @return */ - Integer getGoodsSaleNum(Integer goodsId, Integer type); + Integer getGoodsSaleNum(Integer goodsId, Integer type, Long userId); /** @@ -113,4 +112,9 @@ * 定时查询快递信息 */ void taskExpress(); + + /** + * 导入物流信息 + */ + void importExpress(String url); } -- Gitblit v1.7.1