图谱-后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
987 B

10 months ago
package com.teaching.backend.controller.resource;
import com.teaching.backend.common.BaseResponse;
import com.teaching.backend.common.ResultUtils;
import com.teaching.backend.service.KnowGraph.ResourcesService;
import com.teaching.backend.service.resource.ResourceService;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;
import javax.servlet.http.HttpServletResponse;
import java.io.*;
/**
* ClassName: CommonController
* Package: com.teaching.backend.controller
* Description:
*
* @Author 姜钧瀚
* @Create 2024/6/1 10:30
* @Version 1.0
*/
@RestController
@RequestMapping("/resource")
10 months ago
public class ResourceController {
private ResourceService resourceService;
//添加知识点
@PostMapping("/upload")
public String uploadFile(@RequestParam("file")MultipartFile file) {
System.out.println(file.getOriginalFilename());
return resourceService.upload(file);
}
}