You cannot 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
384 B
Java
16 lines
384 B
Java
package com.attendance.service;
|
|
|
|
import com.attendance.entity.CourseSchedule;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
|
import java.util.List;
|
|
|
|
public interface CourseScheduleService extends IService<CourseSchedule> {
|
|
|
|
void saveWithTasks(CourseSchedule schedule);
|
|
|
|
void updateWithTasks(CourseSchedule schedule);
|
|
|
|
void removeWithTasks(List<Long> ids);
|
|
}
|