From bd40c80eea0074f02a08d210a14bb0695243948f Mon Sep 17 00:00:00 2001
From: feiyu02 <risaku@163.com>
Date: 星期一, 04 七月 2022 16:15:10 +0800
Subject: [PATCH] 1. 承诺书pdf生产模块
---
src/main/kotlin/cn/flightfeather/supervision/lightshare/web/CommitmentController.kt | 24 +++++++++++++++++-------
1 files changed, 17 insertions(+), 7 deletions(-)
diff --git a/src/main/kotlin/cn/flightfeather/supervision/lightshare/web/CommitmentController.kt b/src/main/kotlin/cn/flightfeather/supervision/lightshare/web/CommitmentController.kt
index a35178d..d9c7558 100644
--- a/src/main/kotlin/cn/flightfeather/supervision/lightshare/web/CommitmentController.kt
+++ b/src/main/kotlin/cn/flightfeather/supervision/lightshare/web/CommitmentController.kt
@@ -3,6 +3,8 @@
import cn.flightfeather.supervision.lightshare.service.CommitmentService
import io.swagger.annotations.Api
import io.swagger.annotations.ApiOperation
+import io.swagger.annotations.ApiParam
+import io.swagger.annotations.ApiResponse
import org.springframework.web.bind.annotation.*
import org.springframework.web.multipart.MultipartFile
import javax.servlet.http.HttpServletResponse
@@ -19,16 +21,24 @@
@ApiOperation(value = "鑾峰彇鐢ㄦ埛鎵胯涔�")
@GetMapping("/letter")
fun getLetterOfCommitment(
- @RequestParam("userId") userId: String,
- @RequestParam("page") page: Int,
- @RequestParam("per_page") perPage: Int,
- response: HttpServletResponse
+ @ApiParam(value = "鐢ㄦ埛id") @RequestParam("userId") userId: String,
+ @ApiParam(value = "椤电爜") @RequestParam("page") page: Int,
+ @ApiParam(value = "鍗曢〉鏁版嵁閲�") @RequestParam("per_page") perPage: Int,
+ response: HttpServletResponse
) = commitmentService.getLetterOfCommitment(userId, page, perPage, response)
+ @ApiOperation(value = "涓婁紶鎵胯涔�")
@PostMapping("/letter/upload")
fun uploadLetterOfCommitment(
- @RequestParam userId: String,
- @RequestParam("params") commitmentVoList: String,
- @RequestPart("images") files: Array<MultipartFile>
+ @ApiParam(value = "鐢ㄦ埛id") @RequestParam userId: String,
+ @ApiParam(value = "鎵胯涔︿俊鎭痡son") @RequestParam("params") commitmentVoList: String,
+ @ApiParam(value = "鎵胯涔﹀浘鐗�") @RequestPart("images") files: Array<MultipartFile>
) = commitmentService.uploadLetterOfCommitment(userId, commitmentVoList, files)
+
+ @ApiOperation(value = "鐢熶骇鎵胯涔�")
+ @PostMapping("/letter/create")
+ fun createLetterOfCommitment(
+ @ApiParam(value = "鐢ㄦ埛id") @RequestParam userId: String,
+ @ApiParam(value = "鎵胯涔﹀弬鏁�") @RequestBody params: MutableMap<String, Any>
+ ) = commitmentService.createLetterOfCommitment(userId, params)
}
\ No newline at end of file
--
Gitblit v1.9.3