|
@@ -6,9 +6,13 @@ import cn.com.qmth.examcloud.core.basic.api.StudentCloudService;
|
|
|
import cn.com.qmth.examcloud.core.basic.api.request.GetStudentReq;
|
|
|
import cn.com.qmth.examcloud.core.basic.api.request.SaveStudentReq;
|
|
|
import cn.com.qmth.examcloud.core.basic.api.request.UnbindStudentCodeReq;
|
|
|
+import cn.com.qmth.examcloud.core.basic.api.request.UpdatePasswordReq;
|
|
|
+import cn.com.qmth.examcloud.core.basic.api.request.UpdateStudentStatusReq;
|
|
|
import cn.com.qmth.examcloud.core.basic.api.response.GetStudentResp;
|
|
|
import cn.com.qmth.examcloud.core.basic.api.response.SaveStudentResp;
|
|
|
import cn.com.qmth.examcloud.core.basic.api.response.UnbindStudentCodeResp;
|
|
|
+import cn.com.qmth.examcloud.core.basic.api.response.UpdatePasswordResp;
|
|
|
+import cn.com.qmth.examcloud.core.basic.api.response.UpdateStudentStatusResp;
|
|
|
|
|
|
@Service
|
|
|
public class StudentCloudServiceClient extends AbstractCloudClientSupport
|
|
@@ -32,4 +36,14 @@ public class StudentCloudServiceClient extends AbstractCloudClientSupport
|
|
|
return post("student/unbindStudentCode", req, UnbindStudentCodeResp.class);
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public UpdatePasswordResp updatePassword(UpdatePasswordReq req) {
|
|
|
+ return post("student/updatePassword", req, UpdatePasswordResp.class);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public UpdateStudentStatusResp updateStudentStatus(UpdateStudentStatusReq req) {
|
|
|
+ return post("student/updateStudentStatus", req, UpdateStudentStatusResp.class);
|
|
|
+ }
|
|
|
+
|
|
|
}
|