From b0cce93617ea3d4940f1304f2150d8481e1b8a2b Mon Sep 17 00:00:00 2001
From: 上海郢昱 <15922366+miu-haiqing@user.noreply.gitee.com>
Date: 星期一, 07 九月 2026 15:33:20 +0800
Subject: [PATCH] 不合格处理:OA回调新增结束标识字段,每个节点审批结束都更新一次流程信息
---
performance-server/src/main/java/com/ruoyi/performance/controller/PerformanceShiftController.java | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/performance-server/src/main/java/com/ruoyi/performance/controller/PerformanceShiftController.java b/performance-server/src/main/java/com/ruoyi/performance/controller/PerformanceShiftController.java
index 2fa075f..6e7e4fd 100644
--- a/performance-server/src/main/java/com/ruoyi/performance/controller/PerformanceShiftController.java
+++ b/performance-server/src/main/java/com/ruoyi/performance/controller/PerformanceShiftController.java
@@ -9,6 +9,7 @@
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.format.annotation.DateTimeFormat;
+import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annotation.*;
import javax.servlet.http.HttpServletResponse;
@@ -76,4 +77,11 @@
performanceShiftService.exportToExcel(time,userName,laboratory,isMonth,response);
}
+ @ApiOperation(value = "鍒犻櫎鎺掔彮鏁版嵁")
+ @DeleteMapping("delShift")
+ @PreAuthorize("@ss.hasPermi('performance:class:del')")
+ public Result<?> delShift(@RequestBody PerformanceShiftAddDto performanceShiftAddDto) {
+ return Result.success(performanceShiftService.delShift(performanceShiftAddDto));
+ }
+
}
--
Gitblit v1.9.3