|
@@ -102,6 +102,8 @@ public class StudentManageServiceImpl implements StudentManageService {
|
|
private EmployeeDao employeeDao;
|
|
private EmployeeDao employeeDao;
|
|
@Autowired
|
|
@Autowired
|
|
private OrganizationDegreeCourseFeeDao organizationDegreeCourseFeeDao;
|
|
private OrganizationDegreeCourseFeeDao organizationDegreeCourseFeeDao;
|
|
|
|
+ @Autowired
|
|
|
|
+ private ActivityUserMapperDao activityUserMapperDao;
|
|
|
|
|
|
@Override
|
|
@Override
|
|
public PageInfo<StudentManageListDto> findStudentsByOrganId(StudentManageQueryInfo queryInfo) {
|
|
public PageInfo<StudentManageListDto> findStudentsByOrganId(StudentManageQueryInfo queryInfo) {
|
|
@@ -735,6 +737,7 @@ public class StudentManageServiceImpl implements StudentManageService {
|
|
student.setOperatingTempTag(0);
|
|
student.setOperatingTempTag(0);
|
|
student.setServiceTag(student.getServiceTag() == 0 ? 2 : 1);
|
|
student.setServiceTag(student.getServiceTag() == 0 ? 2 : 1);
|
|
student.setTeacherId(student.getTeacherId());
|
|
student.setTeacherId(student.getTeacherId());
|
|
|
|
+ activityUserMapperDao.updateTeacherId(student.getUserId(),student.getTeacherId());
|
|
if(Objects.nonNull(student.getCarePackage())||Objects.nonNull(student.getComeOnPackage())){
|
|
if(Objects.nonNull(student.getCarePackage())||Objects.nonNull(student.getComeOnPackage())){
|
|
Student oldStudent = studentDao.get(userId);
|
|
Student oldStudent = studentDao.get(userId);
|
|
if(Objects.nonNull(oldStudent.getCarePackage())&&oldStudent.getCarePackage().equals(2)){
|
|
if(Objects.nonNull(oldStudent.getCarePackage())&&oldStudent.getCarePackage().equals(2)){
|