|
@@ -8,6 +8,7 @@ import cn.com.qmth.examcloud.examwork.api.request.GetExamCourseListReq;
|
|
|
import cn.com.qmth.examcloud.examwork.api.request.GetExamCoursePaperTypeListReq;
|
|
|
import cn.com.qmth.examcloud.examwork.api.request.GetExamListReq;
|
|
|
import cn.com.qmth.examcloud.examwork.api.request.GetExamOrgListReq;
|
|
|
+import cn.com.qmth.examcloud.examwork.api.request.GetExamPropertyListReq;
|
|
|
import cn.com.qmth.examcloud.examwork.api.request.GetExamPropertyReq;
|
|
|
import cn.com.qmth.examcloud.examwork.api.request.GetExamReq;
|
|
|
import cn.com.qmth.examcloud.examwork.api.request.GetExamStudentPropertyValueListReq;
|
|
@@ -21,6 +22,7 @@ import cn.com.qmth.examcloud.examwork.api.response.GetExamCourseListResp;
|
|
|
import cn.com.qmth.examcloud.examwork.api.response.GetExamCoursePaperTypeListResp;
|
|
|
import cn.com.qmth.examcloud.examwork.api.response.GetExamListResp;
|
|
|
import cn.com.qmth.examcloud.examwork.api.response.GetExamOrgListResp;
|
|
|
+import cn.com.qmth.examcloud.examwork.api.response.GetExamPropertyListResp;
|
|
|
import cn.com.qmth.examcloud.examwork.api.response.GetExamPropertyResp;
|
|
|
import cn.com.qmth.examcloud.examwork.api.response.GetExamResp;
|
|
|
import cn.com.qmth.examcloud.examwork.api.response.GetExamStudentPropertyValueListResp;
|
|
@@ -61,6 +63,11 @@ public class ExamCloudServiceClient extends AbstractCloudClientSupport implement
|
|
|
return post("exam/getExamProperty", req, GetExamPropertyResp.class);
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public GetExamPropertyListResp getExamPropertyList(GetExamPropertyListReq req) {
|
|
|
+ return post("exam/getExamPropertyList", req, GetExamPropertyListResp.class);
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public GetOngoingExamListResp getOngoingExamList(GetOngoingExamListReq req) {
|
|
|
return post("exam/getOngoingExamList", req, GetOngoingExamListResp.class);
|