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.

16 lines
271 B

package com.yingji.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.yingji.entity.Task;
/**
* 任务信息(Task)表服务接口
*
* @author wu
* @since 2024-05-10 17:10:33
*/
public interface TaskService extends IService<Task> {
}