|
@@ -0,0 +1,18 @@
|
|
|
|
+package cn.com.qmth.examcloud.core.oe.admin.client;
|
|
|
|
+
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.admin.api.ExamCourseCloudService;
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.admin.api.request.GetExamCourseReq;
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.admin.api.response.GetExamCourseResp;
|
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
|
+
|
|
|
|
+@Service
|
|
|
|
+public class ExamCourseCloudServiceClient extends AbstractCloudClientSupport implements ExamCourseCloudService {
|
|
|
|
+
|
|
|
|
+ private static final long serialVersionUID = -6761583333103520774L;
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public GetExamCourseResp getExamCourses(GetExamCourseReq req) {
|
|
|
|
+ return post("exam/course/getExamCourses", req, GetExamCourseResp.class);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+}
|