From 66772a2d80b2612cea4e1e5740c9df3d2f672a39 Mon Sep 17 00:00:00 2001
From: xin <1099200748@qq.com>
Date: Thu, 25 Sep 2025 21:51:20 +0800
Subject: [PATCH] 商户角色优化
---
oying-system/src/main/java/com/oying/modules/sh/service/OrderReturnService.java | 20 +++++++++++++-------
1 files changed, 13 insertions(+), 7 deletions(-)
diff --git a/oying-system/src/main/java/com/oying/modules/sh/service/OrderReturnService.java b/oying-system/src/main/java/com/oying/modules/sh/service/OrderReturnService.java
index cabc3b3..f8f1c9e 100644
--- a/oying-system/src/main/java/com/oying/modules/sh/service/OrderReturnService.java
+++ b/oying-system/src/main/java/com/oying/modules/sh/service/OrderReturnService.java
@@ -7,6 +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.request.AuditOrderReturn;
+import com.oying.modules.sh.domain.request.ReturnOrder;
+import com.oying.modules.sh.domain.vo.OrderReturnResponse;
import com.oying.utils.PageResult;
/**
@@ -35,7 +38,10 @@
* 创建
* @param resources /
*/
- void create(OrderReturn resources);
+ void create(ReturnOrder resources);
+
+
+ void cancel(String returnNum);
/**
* 编辑
@@ -44,16 +50,16 @@
void update(OrderReturn resources);
/**
- * 多选删除
- * @param ids /
- */
- void deleteAll(List<Long> ids);
-
- /**
* 导出数据
* @param all 待导出的数据
* @param response /
* @throws IOException /
*/
void download(List<OrderReturn> all, HttpServletResponse response) throws IOException;
+
+ OrderReturnResponse getByReturnNum(String outRefundNo);
+
+ void updatePayStatus(String outRefundNo, String refundStatus, String successTime);
+
+ void audit(AuditOrderReturn resources);
}
--
Gitblit v1.9.3