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 szs
- * @Date: 2023-12-06
- * @Version 1.0
- */
- public interface IWfCourseAdjustService extends MPJBaseService<WfCourseAdjust> {
- Boolean cancel(WfCourseAdjustDto dto);
- void backupsData(Long id);
- }
|