From b3c7d5217499574a880cf14581abcaae6ee90b74 Mon Sep 17 00:00:00 2001 From: developer Date: Thu, 9 Jul 2026 00:12:22 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B8=85=E7=90=86=20ReviewService=20=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=E4=B8=AD=E7=9A=84=E5=AF=BC=E5=9B=BE=E6=96=B9=E6=B3=95?= =?UTF-8?q?=E5=AE=9A=E4=B9=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/ReviewService.java | 20 ------------------- 1 file changed, 20 deletions(-) diff --git a/src/main/java/com/guo/learningprogresstracker/service/ReviewService.java b/src/main/java/com/guo/learningprogresstracker/service/ReviewService.java index 04bde20..bef4704 100644 --- a/src/main/java/com/guo/learningprogresstracker/service/ReviewService.java +++ b/src/main/java/com/guo/learningprogresstracker/service/ReviewService.java @@ -2,14 +2,9 @@ package com.guo.learningprogresstracker.service; import com.guo.learningprogresstracker.dto.ReviewFeedItem; import com.guo.learningprogresstracker.dto.ReviewTaskStats; -import com.guo.learningprogresstracker.dto.request.UpsertReviewMindMapRequest; -import com.guo.learningprogresstracker.entity.ReviewMindMapEntity; import com.guo.learningprogresstracker.entity.StudyReportFragmentsEntity; import com.guo.learningprogresstracker.entity.StudyReportsEntity; import com.guo.learningprogresstracker.exception.NotFindEntitiesException; -import org.springframework.web.multipart.MultipartFile; - -import java.io.IOException; import java.util.List; @@ -47,19 +42,4 @@ public interface ReviewService { * 获取残片详情 */ StudyReportFragmentsEntity getFragmentDetail(int id) throws NotFindEntitiesException; - - /** - * 获取指定任务的思维导图 - */ - ReviewMindMapEntity getMindMap(String taskNum) throws NotFindEntitiesException; - - /** - * 创建或更新指定任务的思维导图 - */ - ReviewMindMapEntity upsertMindMap(String taskNum, UpsertReviewMindMapRequest request) throws NotFindEntitiesException; - - /** - * 上传并解析指定任务的思维导图文件 - */ - ReviewMindMapEntity uploadMindMap(String taskNum, MultipartFile file) throws NotFindEntitiesException, IOException; }