Blame view

service-api/src/main/java/com/java110/api/smo/ICommunityServiceSMO.java 754 Bytes
88e030b7   王彪总   init project
1
2
3
4
5
6
  package com.java110.api.smo;
  
  import com.java110.core.context.IPageData;
  import org.springframework.http.ResponseEntity;
  
  /**
9750b443   王彪总   fix(config): 更新配置...
7
   * 项目服务类
88e030b7   王彪总   init project
8
9
10
11
   */
  public interface ICommunityServiceSMO {
  
      /**
9750b443   王彪总   fix(config): 更新配置...
12
       * 我入驻的项目
88e030b7   王彪总   init project
13
14
15
16
17
18
19
       * @param pd
       * @return
       */
      public ResponseEntity<String> listMyCommunity(IPageData pd);
  
  
      /**
9750b443   王彪总   fix(config): 更新配置...
20
       * 查询未入驻的项目
88e030b7   王彪总   init project
21
22
23
24
25
26
27
       * @param pd
       * @return
       */
      public ResponseEntity<String> listNoEnterCommunity(IPageData pd);
  
  
      /**
9750b443   王彪总   fix(config): 更新配置...
28
       * 入驻项目
88e030b7   王彪总   init project
29
30
31
32
33
34
       * @param pd
       * @return
       */
      public ResponseEntity<String> _saveEnterCommunity(IPageData pd);
  
      /**
9750b443   王彪总   fix(config): 更新配置...
35
       * 退出项目
88e030b7   王彪总   init project
36
37
38
39
40
       * @param pd
       * @return
       */
      public ResponseEntity<String> exitCommunity(IPageData pd);
  }