| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- package com.java110.boot.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);
- }
|