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.
|
|
|
package com.teaching.backend.service.resource;
|
|
|
|
|
|
|
|
|
|
|
|
import com.teaching.backend.common.BaseResponse;
|
|
|
|
import com.teaching.backend.model.entity.resource.Resources;
|
|
|
|
import org.springframework.core.io.InputStreamResource;
|
|
|
|
import org.springframework.http.ResponseEntity;
|
|
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.Set;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Author:youhang
|
|
|
|
* @Date:2024-07-26-13:55
|
|
|
|
* @Description:
|
|
|
|
*/
|
|
|
|
|
|
|
|
public interface ResourceGraphService {
|
|
|
|
|
|
|
|
public BaseResponse<String> deleteResourcesAndKnowById(Long id, Long resourcesId);
|
|
|
|
|
|
|
|
BaseResponse<String> addResourcesByIdAndResourcesId(Long id, Long resourcesId);
|
|
|
|
|
|
|
|
|
|
|
|
//查询课程下资源
|
|
|
|
BaseResponse<Set<Resources>> queryResourcesByCourseId(String courseId);
|
|
|
|
|
|
|
|
//查询章节下资源
|
|
|
|
BaseResponse<Set<Resources>> queryResourcesByChapterId(Long chapterId);
|
|
|
|
|
|
|
|
//查询二级节点下资源
|
|
|
|
BaseResponse<Set<Resources>> queryBesidesKnowToResources(Long knowId);
|
|
|
|
|
|
|
|
BaseResponse<Set<Resources>> queryResourcesByKnowId(Long knowId);
|
|
|
|
|
|
|
|
|
|
|
|
}
|