|
|
|
@ -113,6 +113,22 @@ public class ApiStudentService {
|
|
|
|
|
List<ResourcesApplication> resourcesApplicationList = resourcesApplicationService
|
|
|
|
|
.getResourcesApplicationListByUniversitiesCollegesId(studentExtendSchoolInfo.getUniversitiesCollegesId());
|
|
|
|
|
|
|
|
|
|
resourcesApplicationList.stream().forEach(item -> {
|
|
|
|
|
if (item.getApplicationLink().contains("/OAuth?token=")){
|
|
|
|
|
|
|
|
|
|
String substring = item.getApplicationLink().substring(0, item.getApplicationLink().indexOf("/OAuth?token="));
|
|
|
|
|
item.setApplicationLink(substring);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
if ("证券投资模拟交易大赛系统(V2.0)".equals(item.getApplicationName())){
|
|
|
|
|
|
|
|
|
|
String substring = item.getApplicationLink().substring(0, item.getApplicationLink().indexOf("/server?token="));
|
|
|
|
|
item.setApplicationLink(substring);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 我的开课信息
|
|
|
|
|
TeacherOpenCourseMergeStudentQuery teacherOpenCourseMergeStudentQuery = new TeacherOpenCourseMergeStudentQuery();
|
|
|
|
|
teacherOpenCourseMergeStudentQuery.setStudentId(studentId);
|
|
|
|
|