12345678910111213141516171819202122232425262728293031323334353637383940 |
- package com.ym.mec.education.service;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.ym.mec.education.base.BaseResponse;
- import com.ym.mec.education.base.PageResponse;
- import com.ym.mec.education.entity.CourseSchedule;
- import com.ym.mec.education.req.ClassGroupReq;
- import com.ym.mec.education.req.CourseScheduleReq;
- /**
- * <p>
- * 课程计划表 服务类
- * </p>
- *
- * @author lemeng
- * @since 2019-09-25
- */
- public interface ICourseScheduleService extends IService<CourseSchedule> {
- /**
- * 根据参数分页查询课程计划列表
- * @param classGroupReq
- * @return
- */
- PageResponse getPage(ClassGroupReq classGroupReq);
- /**
- * 根据课程计划id获取课程计划详情
- * @param courseScheduleReq
- * @return
- */
- BaseResponse getInfo(CourseScheduleReq courseScheduleReq);
- /**
- * 历史考勤统计-头信息
- * @param courseScheduleReq
- * @return
- */
- BaseResponse getStatisticsInfo(CourseScheduleReq courseScheduleReq);
- }
|