|
|
@@ -0,0 +1,64 @@
|
|
|
+package com.java110.web.smo.itemOut.impl;
|
|
|
+
|
|
|
+import com.alibaba.fastjson.JSONArray;
|
|
|
+import com.alibaba.fastjson.JSONObject;
|
|
|
+import com.java110.utils.constant.PrivilegeCodeConstant;
|
|
|
+import com.java110.utils.constant.ServiceCodeItemOutConstant;
|
|
|
+import com.java110.utils.constant.ServiceConstant;
|
|
|
+import com.java110.utils.util.Assert;
|
|
|
+import com.java110.core.context.IPageData;
|
|
|
+import com.java110.web.core.AbstractComponentSMO;
|
|
|
+import com.java110.web.smo.itemOut.IItemOutBindingSMO;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.http.HttpMethod;
|
|
|
+import org.springframework.http.ResponseEntity;
|
|
|
+import org.springframework.web.client.RestTemplate;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 添加小区服务实现类
|
|
|
+ * add by wuxw 2019-06-30
|
|
|
+ */
|
|
|
+@Service("itemOutBindingSMOImpl")
|
|
|
+public class ItemOutBindingSMOImpl extends AbstractComponentSMO implements IItemOutBindingSMO {
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private RestTemplate restTemplate;
|
|
|
+
|
|
|
+ @Override
|
|
|
+ protected void validate(IPageData pd, JSONObject paramIn) {
|
|
|
+
|
|
|
+ //super.validatePageInfo(pd);
|
|
|
+ JSONArray infos = paramIn.getJSONArray("data");
|
|
|
+ //Assert.hasKeyAndValue(paramIn, "xxx", "xxx");
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ super.checkUserHasPrivilege(pd, restTemplate, PrivilegeCodeConstant.ITEMOUT);
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ protected ResponseEntity<String> doBusinessProcess(IPageData pd, JSONObject paramIn) {
|
|
|
+ ResponseEntity<String> responseEntity = null;
|
|
|
+ super.validateStoreStaffCommunityRelationship(pd, restTemplate);
|
|
|
+
|
|
|
+ responseEntity = this.callCenterService(restTemplate, pd, paramIn.toJSONString(),
|
|
|
+ ServiceConstant.SERVICE_API_URL + "/api/" + ServiceCodeItemOutConstant.BINDING_ITEMOUT,
|
|
|
+ HttpMethod.POST);
|
|
|
+ return responseEntity;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public ResponseEntity<String> bindingItemOut(IPageData pd) {
|
|
|
+ return super.businessProcess(pd);
|
|
|
+ }
|
|
|
+
|
|
|
+ public RestTemplate getRestTemplate() {
|
|
|
+ return restTemplate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRestTemplate(RestTemplate restTemplate) {
|
|
|
+ this.restTemplate = restTemplate;
|
|
|
+ }
|
|
|
+}
|