From aaea4819b873c5ca7b9be1a87af173ee2015a12a Mon Sep 17 00:00:00 2001 From: jiangping <jp@doumee.com> Date: 星期四, 25 一月 2024 14:52:24 +0800 Subject: [PATCH] 开发业务接口 --- server/company/src/main/java/com/doumee/api/business/ApplyChangeController.java | 24 ++++++++++++++++++++++++ 1 files changed, 24 insertions(+), 0 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 a44a11f..b8b2d70 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 @@ -82,6 +82,30 @@ public void exportExcel (@RequestBody PageWrap<ApplyChange> pageWrap, HttpServletResponse response) { ExcelExporter.build(ApplyChange.class).export(applyChangeService.findPage(pageWrap).getRecords(), "鍔犲噺淇濇崲鍘傜敵璇蜂俊鎭〃", response); } + @ApiOperation("瀵煎嚭鍔犲噺淇濊鎯呭崟") + @PostMapping("/exportJiajianBaoExcel") + @RequiresPermissions("business:applychange:exportExcel") + public void exportJiajianBaoExcel (@RequestBody ApplyChange model, HttpServletResponse response) { + ExcelExporter.build(ApplyChange.class).exportJiajianBaoExcel(applyChangeService.exportJiajianBaoExcel(model), response); + } + @ApiOperation("瀵煎嚭鎹㈠巶鐢宠璇︽儏鍗�") + @PostMapping("/exportChangeUnitExcel") + @RequiresPermissions("business:applychange:exportExcel") + public void exportChangeUnitExcel (@RequestBody ApplyChange model, HttpServletResponse response) { + ExcelExporter.build(ApplyChange.class).exportChangeUnitExcel(applyChangeService.exportChangeUnitExcel(model), response); + } + @ApiOperation("鑾峰彇鍔犲噺淇濈绔犲湴鍧�") + @PostMapping("/getJiajianBaoSignLink") + @RequiresPermissions("business:applychange:sign") + public ApiResponse<String> getSignLinkJiajiabao (@RequestBody ApplyChange model, HttpServletResponse response) { + return ApiResponse.success( applyChangeService.getSignLinkJiajiabao(model)); + } + @ApiOperation("鑾峰彇缂撳瓨鐢宠绛剧珷鍦板潃") + @PostMapping("/getChangeUnitSignLink") + @RequiresPermissions("business:applychange:sign") + public ApiResponse<String> getChangeUnitSignLink (@RequestBody ApplyChange model, HttpServletResponse response) { + return ApiResponse.success( applyChangeService.getSignLinkChangeUnit(model)); + } @ApiOperation("鏍规嵁ID鏌ヨ") @GetMapping("/{id}") -- Gitblit v1.9.3