|
|
|
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.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")
|
|
|
|
public class ResourceController {
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
private ResourcesService resourcesService;
|
|
|
|
|
|
|
|
//添加知识点
|
|
|
|
@PostMapping("/upload")
|
|
|
|
public BaseResponse<String> uploadFile(@RequestParam("file")MultipartFile file) {
|
|
|
|
return resourcesService.uploadFile(file);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|