|
@@ -96,7 +96,7 @@ public class StudentCloudServiceProvider extends ControllerSupport implements St
|
|
|
SaveStudentResp resp = new SaveStudentResp();
|
|
|
resp.setStudentId(student.getId());
|
|
|
resp.setRootOrgId(student.getRootOrgId());
|
|
|
-
|
|
|
+ resp.setPhotoPath(student.getPhotoPath());
|
|
|
if (null != student.getOrgId()) {
|
|
|
OrgEntity org = GlobalHelper.getEntity(orgRepo, student.getOrgId(), OrgEntity.class);
|
|
|
resp.setOrgId(org.getId());
|
|
@@ -118,8 +118,8 @@ public class StudentCloudServiceProvider extends ControllerSupport implements St
|
|
|
String studentCode = req.getStudentCode();
|
|
|
String securityPhone = req.getSecurityPhone();
|
|
|
|
|
|
- StudentInfo student = studentService.getStudentInfo(rootOrgId, studentId, identityNumber,
|
|
|
- studentCode, securityPhone);
|
|
|
+ StudentInfo student = studentService.getStudentInfo(rootOrgId, studentId, identityNumber, studentCode,
|
|
|
+ securityPhone);
|
|
|
|
|
|
StudentBean studentBean = new StudentBean();
|
|
|
studentBean.setId(student.getId());
|
|
@@ -162,8 +162,7 @@ public class StudentCloudServiceProvider extends ControllerSupport implements St
|
|
|
throw new StatusException("160002", "studentCode is blank");
|
|
|
}
|
|
|
|
|
|
- List<Long> studentIdList = studentService.unbindStudentCode(rootOrgId, studentCode,
|
|
|
- identityNumber);
|
|
|
+ List<Long> studentIdList = studentService.unbindStudentCode(rootOrgId, studentCode, identityNumber);
|
|
|
|
|
|
UnbindStudentCodeResp resp = new UnbindStudentCodeResp();
|
|
|
resp.setStudentIdList(studentIdList);
|