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

56 lines
1.6 KiB

10 months ago
package com.teaching.backend.controller.resource;
8 months ago
/**
* @Author:youhang
* @Date:2024-06-09-9:55
* @Description:
*/
8 months ago
import com.teaching.backend.common.BaseResponse;
import com.teaching.backend.model.entity.resource.ResourceMysql;
8 months ago
import com.teaching.backend.model.entity.resource.Resources;
import com.teaching.backend.service.resource.ResourceService;
7 months ago
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
8 months ago
import org.springframework.beans.factory.annotation.Autowired;
8 months ago
import org.springframework.core.io.InputStreamResource;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;
@RestController
8 months ago
@RequestMapping("/api/resource")
7 months ago
@Api(tags= "资源管理")
10 months ago
public class ResourceController {
8 months ago
@Autowired
8 months ago
private ResourceService resourceService;
//添加知识点
@PostMapping("/upload")
8 months ago
@ResponseBody
7 months ago
@ApiOperation(value = "添加资源")
8 months ago
public BaseResponse<Resources> uploadFile(@RequestPart("file") MultipartFile file) {
8 months ago
return resourceService.upload(file);
}
8 months ago
//删除资源
@GetMapping ("delete")
@ResponseBody
7 months ago
@ApiOperation(value = "删除资源")
8 months ago
public BaseResponse<String> deleteResource(@RequestParam("filename") String filename) {
return resourceService.delete(filename);
}
8 months ago
@GetMapping("/read")
7 months ago
@ApiOperation(value = "查询资源")
8 months ago
public ResponseEntity<InputStreamResource> readFile(@RequestParam String filename) {
return resourceService.readFile(filename);
}
8 months ago
8 months ago
}