BaseController.java 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. package com.lqkj.cmlcp.module.base.controller;
  2. import com.lqkj.cmlcp.message.Result;
  3. import com.lqkj.cmlcp.module.base.service.BaseService;
  4. import io.swagger.v3.oas.annotations.Operation;
  5. import io.swagger.v3.oas.annotations.Parameter;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.web.bind.annotation.PostMapping;
  8. import org.springframework.web.bind.annotation.RequestMapping;
  9. import org.springframework.web.bind.annotation.RestController;
  10. import org.springframework.web.multipart.MultipartFile;
  11. @RestController
  12. @RequestMapping("/base")
  13. public class BaseController {
  14. @Autowired
  15. private BaseService baseService;
  16. @Operation(
  17. summary = "5.1.3.33 空间信息json文件上传接口",
  18. description = "5.1.3.33 空间信息json文件上传接口",
  19. parameters = {
  20. @Parameter(name = "file", description = "空间信息json文件上传接口", required = true)
  21. }
  22. )
  23. @PostMapping({"/addJsonFile"})
  24. public Result<String> addJsonFile(MultipartFile file) {
  25. return Result.ok(baseService.uploadJsonFile(file, "base/json/"));
  26. }
  27. }