From b8045b11ca8af95cb5aeba464bff589e0b9f53b8 Mon Sep 17 00:00:00 2001 From: zss <zss@example.com> Date: 星期四, 30 五月 2024 18:08:13 +0800 Subject: [PATCH] 光纤配置三层架构+辅助工时的审核与批准逻辑修改 --- performance-server/src/main/java/com/yuanchu/mom/service/PerformanceShiftService.java | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-) diff --git a/performance-server/src/main/java/com/yuanchu/mom/service/PerformanceShiftService.java b/performance-server/src/main/java/com/yuanchu/mom/service/PerformanceShiftService.java index 1274d30..8a4ec3a 100644 --- a/performance-server/src/main/java/com/yuanchu/mom/service/PerformanceShiftService.java +++ b/performance-server/src/main/java/com/yuanchu/mom/service/PerformanceShiftService.java @@ -20,7 +20,13 @@ void performanceShiftAdd(PerformanceShiftAddDto performanceShiftAddDto); - IPage<Map<String, Object>> performanceShiftPage(Page<Object> page, String time, String userName, String laboratory); + Map<String, Object> performanceShiftPage(Page<Object> page, String time, String userName, String laboratory); - void performanceShiftUpdate(String shift, Integer id); + void performanceShiftUpdate(PerformanceShift performanceShift); + + IPage<Map<String, Object>> performanceShiftPageYear(Page<Object> page, String time, String userName, String laboratory); + + Map<Object, Object> exportToYearExcel(String time, String userName, String laboratory) throws Exception; + + Map<Object, Object> exportToMonthExcel(String time, String userName, String laboratory); } -- Gitblit v1.9.3