ICourseTableService.java 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. package com.xjrsoft.module.courseTable.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.xjrsoft.module.courseTable.dto.ClassListDto;
  4. import com.xjrsoft.module.courseTable.entity.CourseTable;
  5. import com.xjrsoft.module.courseTable.vo.ClassListVo;
  6. import com.xjrsoft.module.schedule.dto.ClassOptionDto;
  7. import com.xjrsoft.module.schedule.dto.CourseTableDto;
  8. import com.xjrsoft.module.schedule.dto.ScheduleWeekExportQueryDto;
  9. import com.xjrsoft.module.schedule.entity.WfCourseAdjust;
  10. import com.xjrsoft.module.schedule.vo.ClassOptionVo;
  11. import com.xjrsoft.module.schedule.vo.CourseListVo;
  12. import com.xjrsoft.module.schedule.vo.CourseTableVo;
  13. import java.io.ByteArrayOutputStream;
  14. import java.io.IOException;
  15. import java.io.InputStream;
  16. import java.util.List;
  17. /**
  18. * <p>
  19. * 课表 服务类
  20. * </p>
  21. *
  22. * @author baomidou
  23. * @since 2023-09-02 02:19:56
  24. */
  25. public interface ICourseTableService extends IService<CourseTable> {
  26. Boolean wordImport(InputStream inputStream) throws IOException;
  27. List<ClassListVo> classList(ClassListDto dto);
  28. CourseTableVo getList(CourseTableDto dto);
  29. List<CourseListVo> getAdjustList(String teacherId, String adjustDate, String classId, String adjustType);
  30. String getPreCheck(String preCheckType, String courseId, String swapCourseId, String swapDate, String subTeacherId);
  31. /**
  32. * 流程审批通过后,根据日期
  33. * @param courseAdjust
  34. * @return
  35. */
  36. Boolean adjustCourse(WfCourseAdjust courseAdjust);
  37. ByteArrayOutputStream listScheduleWeekExportQuery(ScheduleWeekExportQueryDto dto);
  38. List<ClassOptionVo> getClassListByTeacherId(ClassOptionDto dto);
  39. }