From 622b92bac0fe45067bcaab3358168561b0dfbadb Mon Sep 17 00:00:00 2001
From: k94314517 <8417338+k94314517@user.noreply.gitee.com>
Date: 星期三, 27 三月 2024 11:21:48 +0800
Subject: [PATCH] git ch

---
 server/company/src/main/java/com/doumee/api/business/ApplyChangeController.java |   11 +++++++++--
 1 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/server/company/src/main/java/com/doumee/api/business/ApplyChangeController.java b/server/company/src/main/java/com/doumee/api/business/ApplyChangeController.java
index caa4af1..ac9af61 100644
--- a/server/company/src/main/java/com/doumee/api/business/ApplyChangeController.java
+++ b/server/company/src/main/java/com/doumee/api/business/ApplyChangeController.java
@@ -86,7 +86,7 @@
     @PostMapping("/exportExcel")
     @RequiresPermissions("business:applychange:exportExcel")
     public void exportExcel (@RequestBody PageWrap<ApplyChange> pageWrap, HttpServletResponse response) {
-        ExcelExporter.build(ApplyChange.class).export(applyChangeService.findPage(pageWrap).getRecords(), "鍔犲噺淇濇崲鍘傜敵璇蜂俊鎭〃", response);
+        ExcelExporter.build(ApplyChange.class).export(applyChangeService.findPageForCompany(pageWrap).getRecords(), "鍔犲噺淇濇崲鍘傜敵璇蜂俊鎭〃", response);
     }
     @ApiOperation("瀵煎嚭鍔犲噺淇濊鎯呭崟")
     @PostMapping("/exportJiajianBaoExcel")
@@ -116,7 +116,7 @@
     @ApiOperation("鏍规嵁ID鏌ヨ")
     @GetMapping("/{id}")
     @RequiresPermissions("business:applychange:query")
-    public ApiResponse findById(@PathVariable Integer id) {
+    public ApiResponse<ApplyChange> findById(@PathVariable Integer id) {
         return ApiResponse.success(applyChangeService.findDetail(id));
     }
 
@@ -133,4 +133,11 @@
         return ApiResponse.success("鎿嶄綔鎴愬姛",applyChangeService.getChangeCountCyclePriceVO(applyChangeCyclePriceDTO));
     }
 
+    @ApiOperation("鎶曚繚纭涔︾绔犱笟鍔�")
+    @GetMapping("/getChangeMemberListOnlineSignLink/{id}")
+    @RequiresPermissions("business:applychange:query")
+    public ApiResponse<String> getChangeMemberListOnlineSignLink(@PathVariable Integer id) {
+        return ApiResponse.success(applyChangeService.getChangeMemberListOnlineSignLink(id));
+    }
+
 }

--
Gitblit v1.9.3