|
@@ -5,9 +5,11 @@ import org.springframework.stereotype.Service;
|
|
|
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.UpdateProjectCourseOrgCountReq;
|
|
|
+import cn.com.qmth.examcloud.core.reports.api.request.UpdateProjectStatusByIdsReq;
|
|
|
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.UpdateProjectCourseOrgCountResp;
|
|
|
+import cn.com.qmth.examcloud.core.reports.api.response.UpdateProjectStatusByIdsResp;
|
|
|
import cn.com.qmth.examcloud.core.reports.api.response.UpdateProjectStatusResp;
|
|
|
|
|
|
@Service
|
|
@@ -34,4 +36,9 @@ public class ProjectCloudServiceClient extends AbstractCloudClientSupport implem
|
|
|
return post("project/updateCourseOrgCount", req, UpdateProjectCourseOrgCountResp.class);
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public UpdateProjectStatusByIdsResp updateProjectStatusByIds(UpdateProjectStatusByIdsReq req) {
|
|
|
+ return post("project/updateStatusByIds", req, UpdateProjectStatusByIdsResp.class);
|
|
|
+ }
|
|
|
+
|
|
|
}
|