1234567891011121314151617181920 |
- package com.xjrsoft.module.schedule.service;
- import com.github.yulichang.base.MPJBaseService;
- import com.xjrsoft.module.schedule.dto.WfCourseAdjustDto;
- import com.xjrsoft.module.schedule.entity.WfCourseAdjust;
- /**
- * @title: 调课顶课
- * @Author dzx
- * @Date: 2024年10月17日
- * @Version 1.0
- */
- public interface IWfCourseAdjustService extends MPJBaseService<WfCourseAdjust> {
- Boolean cancel(WfCourseAdjustDto dto);
- void backupsData(Long id);
- }
|