|
@@ -4,8 +4,10 @@ import org.springframework.stereotype.Service;
|
|
|
|
|
|
import cn.com.qmth.examcloud.core.reports.api.ProjectCloudService;
|
|
import cn.com.qmth.examcloud.core.reports.api.ProjectCloudService;
|
|
import cn.com.qmth.examcloud.core.reports.api.request.GetProjectInfoBeanReq;
|
|
import cn.com.qmth.examcloud.core.reports.api.request.GetProjectInfoBeanReq;
|
|
|
|
+import cn.com.qmth.examcloud.core.reports.api.request.UpdateProjectCourseOrgCountReq;
|
|
import cn.com.qmth.examcloud.core.reports.api.request.UpdateProjectStatusReq;
|
|
import cn.com.qmth.examcloud.core.reports.api.request.UpdateProjectStatusReq;
|
|
import cn.com.qmth.examcloud.core.reports.api.response.GetProjectInfoBeanResp;
|
|
import cn.com.qmth.examcloud.core.reports.api.response.GetProjectInfoBeanResp;
|
|
|
|
+import cn.com.qmth.examcloud.core.reports.api.response.UpdateProjectCourseOrgCountResp;
|
|
import cn.com.qmth.examcloud.core.reports.api.response.UpdateProjectStatusResp;
|
|
import cn.com.qmth.examcloud.core.reports.api.response.UpdateProjectStatusResp;
|
|
|
|
|
|
@Service("projectCloudService")
|
|
@Service("projectCloudService")
|
|
@@ -27,4 +29,9 @@ public class ProjectCloudServiceClient extends AbstractCloudClientSupport implem
|
|
return post("project/getProjectBean", req, GetProjectInfoBeanResp.class);
|
|
return post("project/getProjectBean", req, GetProjectInfoBeanResp.class);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @Override
|
|
|
|
+ public UpdateProjectCourseOrgCountResp updateProjectCourseOrgCount(UpdateProjectCourseOrgCountReq req) {
|
|
|
|
+ return post("project/updateCourseOrgCount", req, UpdateProjectCourseOrgCountResp.class);
|
|
|
|
+ }
|
|
|
|
+
|
|
}
|
|
}
|