Procházet zdrojové kódy

优化初始化公司页面

java110 před 6 roky
rodič
revize
7305eeaba6

+ 40 - 0
FrontService/src/main/java/com/java110/front/components/company/HasCompanyComponent.java

@@ -0,0 +1,40 @@
+package com.java110.front.components.company;
+
+
+import com.java110.core.context.IPageData;
+import com.java110.front.smo.IFlowServiceSMO;
+import com.java110.front.smo.community.IListCommunitysSMO;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.http.HttpMethod;
+import org.springframework.http.HttpStatus;
+import org.springframework.http.ResponseEntity;
+import org.springframework.stereotype.Component;
+
+
+/**
+ * 小区组件管理类
+ *
+ * add by wuxw
+ *
+ * 2019-06-29
+ */
+@Component("hasCompany")
+public class HasCompanyComponent {
+
+    @Autowired
+    private IFlowServiceSMO flowServiceSMOImpl;
+
+    /**
+     * 查询小区列表
+     * @param pd 页面数据封装
+     * @return 返回 ResponseEntity 对象
+     */
+    public ResponseEntity<String> check(IPageData pd){
+        if(flowServiceSMOImpl.hasStoreInfos(pd)){
+            return new ResponseEntity<>("有商户信息", HttpStatus.OK);
+        }
+         return new ResponseEntity<>("初始化商户",HttpStatus.FORBIDDEN);
+    }
+
+
+}