图谱-后端
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
1.0 KiB

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;
8 months ago
import org.springframework.beans.factory.annotation.Autowired;
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 {
8 months ago
@Autowired
private ResourcesService resourcesService;
//添加知识点
@PostMapping("/upload")
8 months ago
public BaseResponse<String> uploadFile(@RequestParam("file")MultipartFile file) {
return resourcesService.uploadFile(file);
}
}