Blame view

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