|
|
@@ -0,0 +1,70 @@
|
|
|
+package com.java110.web.smo.community.impl;
|
|
|
+
|
|
|
+import com.alibaba.fastjson.JSONObject;
|
|
|
+import com.java110.common.constant.PrivilegeCodeConstant;
|
|
|
+import com.java110.common.constant.ServiceConstant;
|
|
|
+import com.java110.common.constant.StoreTypeConstant;
|
|
|
+import com.java110.common.exception.SMOException;
|
|
|
+import com.java110.common.util.BeanConvertUtil;
|
|
|
+import com.java110.core.context.IPageData;
|
|
|
+import com.java110.entity.component.ComponentValidateResult;
|
|
|
+import com.java110.web.core.AbstractComponentSMO;
|
|
|
+import com.java110.web.smo.community.IListAuditEnterCommunitysSMO;
|
|
|
+import com.java110.web.smo.community.IListCommunitysSMO;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.http.HttpMethod;
|
|
|
+import org.springframework.http.ResponseEntity;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+import org.springframework.web.client.RestTemplate;
|
|
|
+
|
|
|
+import java.util.Map;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 查询需要查询审核的小区
|
|
|
+ */
|
|
|
+@Service("listAuditEnterCommunitysSMOImpl")
|
|
|
+public class ListAuditEnterCommunitysSMOImpl extends AbstractComponentSMO implements IListAuditEnterCommunitysSMO {
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private RestTemplate restTemplate;
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public ResponseEntity<String> listAuditEnterCommunitys(IPageData pd) throws SMOException {
|
|
|
+ return businessProcess(pd);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ protected void validate(IPageData pd, JSONObject paramIn) {
|
|
|
+
|
|
|
+ super.validatePageInfo(pd);
|
|
|
+
|
|
|
+ super.checkUserHasPrivilege(pd, restTemplate, PrivilegeCodeConstant.AGENT_HAS_LIST_COMMUNITY);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ protected ResponseEntity<String> doBusinessProcess(IPageData pd, JSONObject paramIn) {
|
|
|
+ ComponentValidateResult result = super.validateStoreStaffCommunityRelationship(pd, restTemplate);
|
|
|
+
|
|
|
+ Map paramMap = BeanConvertUtil.beanCovertMap(result);
|
|
|
+ paramIn.putAll(paramMap);
|
|
|
+
|
|
|
+ paramIn.put("memberId", result.getStoreId());
|
|
|
+ paramIn.put("storeTypeCd",result.getStoreTypeCd());
|
|
|
+
|
|
|
+ String apiUrl = ServiceConstant.SERVICE_API_URL + "/api/community.listAuditEnterCommunitys" + mapToUrlParam(paramIn);
|
|
|
+
|
|
|
+ ResponseEntity<String> responseEntity = this.callCenterService(restTemplate, pd, "",
|
|
|
+ apiUrl,
|
|
|
+ HttpMethod.GET);
|
|
|
+
|
|
|
+ return responseEntity;
|
|
|
+ }
|
|
|
+
|
|
|
+ public RestTemplate getRestTemplate() {
|
|
|
+ return restTemplate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRestTemplate(RestTemplate restTemplate) {
|
|
|
+ this.restTemplate = restTemplate;
|
|
|
+ }
|
|
|
+}
|