1. 配置数据库日志输出 2. 任务更新API与测试类 3. 任务删除API与测试类

This commit is contained in:
guo
2024-07-16 21:34:00 +08:00
parent ab252d547f
commit 9e7128a7be
5 changed files with 40 additions and 11 deletions
@@ -6,6 +6,8 @@ import com.guo.learningprogresstracker.dto.response.TasksListInfoResponse;
import com.guo.learningprogresstracker.entity.TaskEntity;
import com.baomidou.mybatisplus.extension.service.IService;
import java.rmi.ServerException;
/**
* @author guo
* @description 针对表【tasks(存储学习任务的基本信息,包括优先级的多维度计算)】的数据库操作Service
@@ -20,4 +22,6 @@ public interface TasksService extends IService<TaskEntity> {
TaskInfoResponse getTask(String taskId);
void updateTask(String taskId, TaskRequest updatedTask);
void deleteTask(String taskId) throws ServerException;
}