From 3585c4b63185b6e83ed6ed3a255e87c7853a3e48 Mon Sep 17 00:00:00 2001
From: zouyu <2723363702@qq.com>
Date: 星期二, 21 七月 2026 10:02:18 +0800
Subject: [PATCH] 1.合格率统计逻辑调整;2.不合格处理:新增问题类型字段;3.对接企业微信配置调整;4.班次:新增删除排班操作
---
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