|
|
|
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")
|
|
|
|
public class ResourceController {
|
|
|
|
|
|
|
|
|
|
|
|
private ResourceService resourceService;
|
|
|
|
|
|
|
|
//添加知识点
|
|
|
|
@PostMapping("/upload")
|
|
|
|
public String uploadFile(@RequestParam("file")MultipartFile file) {
|
|
|
|
System.out.println(file.getOriginalFilename());
|
|
|
|
return resourceService.upload(file);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|