| 12345678910111213141516171819202122 |
- package com.xjrsoft.module.schedule.service;
- import com.github.yulichang.base.MPJBaseService;
- import com.xjrsoft.module.schedule.entity.CourseReceiveMsg;
- import java.util.Date;
- /**
- * @title: 班级荣誉
- * @Author szs
- * @Date: 2023-12-06
- * @Version 1.0
- */
- public interface ICourseReceiveMsgService extends MPJBaseService<CourseReceiveMsg> {
- /**
- * 通知督导室
- */
- Boolean noticeOverseer(String eduYearSerialNo, Date sendDate);
- }
|