From 30a143f368dd2ff6e9c27b9d5dd17923ffed03ae Mon Sep 17 00:00:00 2001 From: zss <zss@example.com> Date: 星期四, 01 八月 2024 18:59:12 +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