From 0b37408e5f92f2c7f1dee8f4eb121db92a4edaa4 Mon Sep 17 00:00:00 2001
From: zepengdev <lzpsmith@outlook.com>
Date: Wed, 17 Sep 2025 19:39:30 +0800
Subject: [PATCH] fix: 调整店铺用户角色

---
 oying-system/src/main/java/com/oying/modules/sh/service/OrderOperationLogService.java |   14 ++++----------
 1 files changed, 4 insertions(+), 10 deletions(-)

diff --git a/oying-system/src/main/java/com/oying/modules/sh/service/OrderOperationLogService.java b/oying-system/src/main/java/com/oying/modules/sh/service/OrderOperationLogService.java
index 482091c..6338bcb 100644
--- a/oying-system/src/main/java/com/oying/modules/sh/service/OrderOperationLogService.java
+++ b/oying-system/src/main/java/com/oying/modules/sh/service/OrderOperationLogService.java
@@ -1,7 +1,5 @@
 package com.oying.modules.sh.service;
 
-import com.oying.modules.sh.domain.Order;
-import com.oying.modules.sh.domain.OrderAddressSnapshot;
 import com.oying.modules.sh.domain.OrderOperationLog;
 import com.oying.modules.sh.domain.dto.OrderOperationLogQueryCriteria;
 import java.util.List;
@@ -9,7 +7,9 @@
 import javax.servlet.http.HttpServletResponse;
 import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
 import com.baomidou.mybatisplus.extension.service.IService;
+import com.oying.modules.sh.domain.vo.OrderResponse;
 import com.oying.utils.PageResult;
+import com.oying.utils.enums.OrderStatusEnum;
 
 /**
 * @description 服务接口
@@ -34,15 +34,9 @@
     List<OrderOperationLog> queryAll(OrderOperationLogQueryCriteria criteria);
 
     /**
-    * 创建
-    * @param resources /
-    */
-    void create(OrderOperationLog resources);
-
-    /**
      * 创建
      */
-    void create(Order order, OrderAddressSnapshot addressSnapshot);
+    void create(OrderResponse response, OrderStatusEnum statusEnum, String cardName);
 
     /**
     * 编辑
@@ -64,5 +58,5 @@
     */
     void download(List<OrderOperationLog> all, HttpServletResponse response) throws IOException;
 
-    List<OrderOperationLog> getByOrderNum(String orderNum);
+    List<OrderOperationLog> getByOrderNum(String orderNum, String type);
 }

--
Gitblit v1.9.3