From 5cd71951051ab02e8aaa64217a8d7a68f956dd91 Mon Sep 17 00:00:00 2001 From: "feng.li" Date: Wed, 19 Jul 2023 18:51:55 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9D=A2=E8=AF=95=E7=A8=BD=E6=A0=B8=E6=93=8D?= =?UTF-8?q?=E4=BD=9Cupdate?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../cool/store/controller/InterviewInspectionController.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/coolstore-partner-webb/src/main/java/com/cool/store/controller/InterviewInspectionController.java b/coolstore-partner-webb/src/main/java/com/cool/store/controller/InterviewInspectionController.java index 60dd772af..eff1c3cd8 100644 --- a/coolstore-partner-webb/src/main/java/com/cool/store/controller/InterviewInspectionController.java +++ b/coolstore-partner-webb/src/main/java/com/cool/store/controller/InterviewInspectionController.java @@ -6,6 +6,7 @@ import com.cool.store.exception.ApiException; import com.cool.store.response.ResponseResult; import com.cool.store.service.InterviewInspectionService; import io.swagger.annotations.Api; +import io.swagger.annotations.ApiOperation; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; @@ -26,12 +27,14 @@ public class InterviewInspectionController { private InterviewInspectionService interviewInspectionService; @PostMapping("/submission") + @ApiOperation("提交稽核结果") public ResponseResult interviewInspectionSubmit(@RequestBody InspectionSubmissionDTO dto) { interviewInspectionService.submit(dto); return ResponseResult.success(); } @PostMapping("/revocation") + @ApiOperation("撤销稽核结果") public ResponseResult interviewInspectionRevoke(@RequestBody InspectionRevocationDTO dto) throws ApiException { interviewInspectionService.revoke(dto); return ResponseResult.success();