wuxw
2019-04-15 688ed0fc056144ced3b341aefa541c9345c8c3f0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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);
}