|
@@ -3,14 +3,10 @@ package cn.com.qmth.examcloud.core.basic.api.client;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
import cn.com.qmth.examcloud.core.basic.api.OrgCloudService;
|
|
|
-import cn.com.qmth.examcloud.core.basic.api.request.GetAllOrgPropertiesReq;
|
|
|
-import cn.com.qmth.examcloud.core.basic.api.request.GetOrgPropertyReq;
|
|
|
import cn.com.qmth.examcloud.core.basic.api.request.GetOrgReq;
|
|
|
import cn.com.qmth.examcloud.core.basic.api.request.GetOrgsByIdListReq;
|
|
|
import cn.com.qmth.examcloud.core.basic.api.request.GetOrgsReq;
|
|
|
import cn.com.qmth.examcloud.core.basic.api.request.SaveOrgReq;
|
|
|
-import cn.com.qmth.examcloud.core.basic.api.response.GetAllOrgPropertiesResp;
|
|
|
-import cn.com.qmth.examcloud.core.basic.api.response.GetOrgPropertyResp;
|
|
|
import cn.com.qmth.examcloud.core.basic.api.response.GetOrgResp;
|
|
|
import cn.com.qmth.examcloud.core.basic.api.response.GetOrgsByIdListResp;
|
|
|
import cn.com.qmth.examcloud.core.basic.api.response.GetOrgsResp;
|
|
@@ -44,16 +40,6 @@ public class OrgCloudServiceClient extends AbstractCloudClientSupport implements
|
|
|
return post("org/getOrgs", req, GetOrgsResp.class);
|
|
|
}
|
|
|
|
|
|
- @Override
|
|
|
- public GetAllOrgPropertiesResp getAllOrgProperties(GetAllOrgPropertiesReq req) {
|
|
|
- return post("org/getAllOrgProperties", req, GetAllOrgPropertiesResp.class);
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public GetOrgPropertyResp getOrgProperty(GetOrgPropertyReq req) {
|
|
|
- return post("org/getOrgProperty", req, GetOrgPropertyResp.class);
|
|
|
- }
|
|
|
-
|
|
|
@Override
|
|
|
public GetOrgsByIdListResp getOrgsByIdList(GetOrgsByIdListReq req) {
|
|
|
return post("org/getOrgsByIdList", req, GetOrgsByIdListResp.class);
|