IWfCourseAdjustService.java 452 B

1234567891011121314151617181920
  1. package com.xjrsoft.module.schedule.service;
  2. import com.github.yulichang.base.MPJBaseService;
  3. import com.xjrsoft.module.schedule.dto.WfCourseAdjustDto;
  4. import com.xjrsoft.module.schedule.entity.WfCourseAdjust;
  5. /**
  6. * @title: 班级荣誉
  7. * @Author szs
  8. * @Date: 2023-12-06
  9. * @Version 1.0
  10. */
  11. public interface IWfCourseAdjustService extends MPJBaseService<WfCourseAdjust> {
  12. Boolean cancel(WfCourseAdjustDto dto);
  13. void backupsData(Long id);
  14. }