| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- package com.xjrsoft.module.banding.service;
- import com.github.yulichang.base.MPJBaseService;
- import com.xjrsoft.module.banding.dto.ChangeClassDto;
- import com.xjrsoft.module.banding.dto.StudentDto;
- import com.xjrsoft.module.banding.entity.BandingTaskClassStudent;
- import com.xjrsoft.module.student.dto.BaseNewStudentPageDto;
- import com.xjrsoft.module.student.entity.StudentReportPlan;
- import java.util.List;
- /**
- * @title: 新生分班任务
- * @Author dzx
- * @Date: 2024-07-01
- * @Version 1.0
- */
- public interface IBandingTaskClassStudentService extends MPJBaseService<BandingTaskClassStudent> {
- /**
- * 新增
- *
- * @param bandingTaskClass
- * @return
- */
- Boolean add(BandingTaskClassStudent bandingTaskClass);
- /**
- * 更新
- *
- * @param bandingTaskClass
- * @return
- */
- Boolean update(BandingTaskClassStudent bandingTaskClass);
- /**
- * 删除
- *
- * @param ids
- * @return
- */
- Boolean delete(List<Long> ids);
- Boolean changeClass(ChangeClassDto dto);
- Boolean removeStudent(ChangeClassDto dto);
- Boolean removeStudent(List<Long> studentIds, Long bandingTaskId);
- List<BaseNewStudentPageDto> satisfyStudent(StudentDto dto);
- List<BaseNewStudentPageDto> surplusStudent(StudentDto dto);
- Boolean insertStudent(ChangeClassDto dto);
- Boolean syncStudentData(StudentReportPlan studentReportPlan);
- Boolean changeClassByWorkFlow(Long userId, Long classId);
- }
|