|
|
@@ -285,7 +285,7 @@ public class CourseTableServiceImpl extends ServiceImpl<CourseTableMapper, Cours
|
|
|
* 调课顶课查询
|
|
|
*/
|
|
|
@Override
|
|
|
- public List<CourseListVo> getAdjustList(String teacherId, String adjustDate, String classId) {
|
|
|
+ public List<CourseListVo> getAdjustList(String teacherId, String adjustDate, String classId, String adjustType) {
|
|
|
CourseTableAdjustDto dto = new CourseTableAdjustDto();
|
|
|
if (adjustDate != null && !"".equals(adjustDate)) {
|
|
|
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd");
|
|
|
@@ -298,6 +298,7 @@ public class CourseTableServiceImpl extends ServiceImpl<CourseTableMapper, Cours
|
|
|
if(teacherId != null && !"".equals(teacherId)){
|
|
|
dto.setTeacherId(Long.parseLong(teacherId));
|
|
|
}
|
|
|
+ dto.setAdjustType(adjustType);
|
|
|
|
|
|
List<CourseListVo> list = courseTableMapper.getAdjustList(dto);
|
|
|
for (CourseListVo courseListVo : list) {
|