|
@@ -15,6 +15,7 @@ import org.springframework.data.domain.Pageable;
|
|
import org.springframework.data.domain.Sort;
|
|
import org.springframework.data.domain.Sort;
|
|
import org.springframework.stereotype.Component;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
|
|
+import com.google.common.collect.Lists;
|
|
import com.google.common.collect.Maps;
|
|
import com.google.common.collect.Maps;
|
|
|
|
|
|
import cn.com.qmth.examcloud.commons.exception.StatusException;
|
|
import cn.com.qmth.examcloud.commons.exception.StatusException;
|
|
@@ -251,7 +252,9 @@ public class ExamStudentImportDataProcessingTask extends AbstractTask {
|
|
saveStudentReq.setOrgCode(entity.getOrgCode());
|
|
saveStudentReq.setOrgCode(entity.getOrgCode());
|
|
saveStudentReq.setOrgId(entity.getOrgId());
|
|
saveStudentReq.setOrgId(entity.getOrgId());
|
|
saveStudentReq.setRootOrgId(rootOrgId);
|
|
saveStudentReq.setRootOrgId(rootOrgId);
|
|
- saveStudentReq.setStudentCode(entity.getStudentCode());
|
|
|
|
|
|
+ List<String> studentCodeList = Lists.newArrayList();
|
|
|
|
+ studentCodeList.add(entity.getStudentCode());
|
|
|
|
+ saveStudentReq.setStudentCodeList(studentCodeList);
|
|
|
|
|
|
SaveStudentResp saveStudentResp = studentCloudService.saveStudent(saveStudentReq);
|
|
SaveStudentResp saveStudentResp = studentCloudService.saveStudent(saveStudentReq);
|
|
|
|
|