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 | 11 ++++++-----
1 files changed, 6 insertions(+), 5 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 3f1ed13..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
@@ -7,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 服务接口
@@ -32,10 +34,9 @@
List<OrderOperationLog> queryAll(OrderOperationLogQueryCriteria criteria);
/**
- * 创建
- * @param resources /
- */
- void create(OrderOperationLog resources);
+ * 创建
+ */
+ void create(OrderResponse response, OrderStatusEnum statusEnum, String cardName);
/**
* 编辑
@@ -57,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