From 781ae8d5c89a0780356acb9541624ba33d598134 Mon Sep 17 00:00:00 2001 From: 疯狂的狮子li <15040126243@163.com> Date: 星期五, 06 五月 2022 17:19:35 +0800 Subject: [PATCH] update 修改邮件开关类型 --- ruoyi-demo/src/main/java/com/ruoyi/demo/controller/Swagger3DemoController.java | 11 ++++++----- 1 files changed, 6 insertions(+), 5 deletions(-) diff --git a/ruoyi-demo/src/main/java/com/ruoyi/demo/controller/Swagger3DemoController.java b/ruoyi-demo/src/main/java/com/ruoyi/demo/controller/Swagger3DemoController.java index 6b73d64..e50ce03 100644 --- a/ruoyi-demo/src/main/java/com/ruoyi/demo/controller/Swagger3DemoController.java +++ b/ruoyi-demo/src/main/java/com/ruoyi/demo/controller/Swagger3DemoController.java @@ -1,6 +1,6 @@ package com.ruoyi.demo.controller; -import com.ruoyi.common.core.domain.AjaxResult; +import com.ruoyi.common.core.domain.R; import io.swagger.annotations.Api; import io.swagger.annotations.ApiImplicitParam; import io.swagger.annotations.ApiImplicitParams; @@ -10,6 +10,8 @@ import org.springframework.web.bind.annotation.RequestPart; import org.springframework.web.bind.annotation.RestController; import org.springframework.web.multipart.MultipartFile; + +import java.io.File; /** * swagger3 鐢ㄦ硶绀轰緥 @@ -24,15 +26,14 @@ /** * 涓婁紶璇锋眰 * 蹇呴』浣跨敤 @RequestPart 娉ㄨВ鏍囨敞涓烘枃浠� - * dataType 蹇呴』涓� "java.io.File" */ @ApiOperation(value = "閫氱敤涓婁紶璇锋眰") @ApiImplicitParams({ - @ApiImplicitParam(name = "file", value = "鏂囦欢", dataType = "java.io.File", required = true), + @ApiImplicitParam(name = "file", value = "鏂囦欢", paramType = "query", dataTypeClass = File.class, required = true) }) @PostMapping(value = "/upload") - public AjaxResult<String> upload(@RequestPart("file") MultipartFile file) { - return AjaxResult.success("鎿嶄綔鎴愬姛", file.getOriginalFilename()); + public R<String> upload(@RequestPart("file") MultipartFile file) { + return R.ok("鎿嶄綔鎴愬姛", file.getOriginalFilename()); } } -- Gitblit v1.9.3