吴学文
2019-04-16 dac07e6c4f1402a156034cfed17d001b48209320
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
package com.java110.web.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);
}