ICommunityServiceSMO.java 755 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. package com.java110.boot.smo;
  2. import com.java110.core.context.IPageData;
  3. import org.springframework.http.ResponseEntity;
  4. /**
  5. * 小区服务类
  6. */
  7. public interface ICommunityServiceSMO {
  8. /**
  9. * 我入驻的小区
  10. * @param pd
  11. * @return
  12. */
  13. public ResponseEntity<String> listMyCommunity(IPageData pd);
  14. /**
  15. * 查询未入驻的小区
  16. * @param pd
  17. * @return
  18. */
  19. public ResponseEntity<String> listNoEnterCommunity(IPageData pd);
  20. /**
  21. * 入驻小区
  22. * @param pd
  23. * @return
  24. */
  25. public ResponseEntity<String> _saveEnterCommunity(IPageData pd);
  26. /**
  27. * 退出小区
  28. * @param pd
  29. * @return
  30. */
  31. public ResponseEntity<String> exitCommunity(IPageData pd);
  32. }