|
@@ -7,8 +7,10 @@ import org.springframework.web.client.RestTemplate;
|
|
import cn.com.qmth.examcloud.commons.web.redis.RedisClient;
|
|
import cn.com.qmth.examcloud.commons.web.redis.RedisClient;
|
|
import cn.com.qmth.examcloud.examwork.api.ExamStudentCloudService;
|
|
import cn.com.qmth.examcloud.examwork.api.ExamStudentCloudService;
|
|
import cn.com.qmth.examcloud.examwork.api.request.CopyExamStudentsReq;
|
|
import cn.com.qmth.examcloud.examwork.api.request.CopyExamStudentsReq;
|
|
|
|
+import cn.com.qmth.examcloud.examwork.api.request.GetExamStudentReq;
|
|
import cn.com.qmth.examcloud.examwork.api.request.SaveExamStudentReq;
|
|
import cn.com.qmth.examcloud.examwork.api.request.SaveExamStudentReq;
|
|
import cn.com.qmth.examcloud.examwork.api.response.CopyExamStudentsResp;
|
|
import cn.com.qmth.examcloud.examwork.api.response.CopyExamStudentsResp;
|
|
|
|
+import cn.com.qmth.examcloud.examwork.api.response.GetExamStudentResp;
|
|
import cn.com.qmth.examcloud.examwork.api.response.SaveExamStudentResp;
|
|
import cn.com.qmth.examcloud.examwork.api.response.SaveExamStudentResp;
|
|
|
|
|
|
@Service
|
|
@Service
|
|
@@ -44,4 +46,9 @@ public class ExamStudentCloudServiceClient extends BasicCloudClientSupport
|
|
return post("examStudent/copyExamStudents", req, CopyExamStudentsResp.class);
|
|
return post("examStudent/copyExamStudents", req, CopyExamStudentsResp.class);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @Override
|
|
|
|
+ public GetExamStudentResp getExamStudent(GetExamStudentReq req) {
|
|
|
|
+ return post("examStudent/getExamStudent", req, GetExamStudentResp.class);
|
|
|
|
+ }
|
|
|
|
+
|
|
}
|
|
}
|