Blame view

service-api/src/main/java/com/java110/api/components/initData/InitDataComponent.java 690 Bytes
88e030b7   王彪总   init project
1
2
3
4
5
6
7
8
9
10
11
12
  package com.java110.api.components.initData;
  
  
  import com.java110.core.context.IPageData;
  import org.springframework.http.ResponseEntity;
  import org.springframework.stereotype.Component;
  
  @Component("initData")
  public class InitDataComponent {
  
  
      /**
9750b443   王彪总   fix(config): 更新配置...
13
       * 查询已经入住的项目
88e030b7   王彪总   init project
14
15
       *
       * @param pd 页面封装对象
9750b443   王彪总   fix(config): 更新配置...
16
       * @return 项目信息 [{community:"123123",name:"测试1项目"},{community:"223123",name:"测试2项目"}]
88e030b7   王彪总   init project
17
18
19
20
21
22
23
24
25
       */
      public ResponseEntity<String> getCommunitys(IPageData pd) {
          ResponseEntity<String> responseEntity = null;
          // responseEntity = listMyEnteredCommunitysSMOImpl.myCommunitys(pd);
  
          return responseEntity;
      }
  
  }