feat: 移植工程
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package com.cxx.home.service;
|
||||
|
||||
import com.cxx.common.dto.task.TaskDto;
|
||||
|
||||
|
||||
public interface TaskService {
|
||||
TaskDto queryTaskById(Long id);
|
||||
|
||||
Long addTask(TaskDto taskDto);
|
||||
|
||||
Boolean updateTask(Long id, TaskDto taskDto);
|
||||
|
||||
Boolean deleteTask(Long id);
|
||||
}
|
||||
Reference in New Issue
Block a user