IOwnerServiceSMO.java 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. package com.java110.web.smo;
  2. import com.java110.core.context.IPageData;
  3. import org.springframework.http.ResponseEntity;
  4. /**
  5. * 小区楼接口类
  6. */
  7. public interface IOwnerServiceSMO {
  8. /**
  9. * 查询小区楼信息
  10. *
  11. * @param pd 页面数据封装对象
  12. * @return 返回 ResponseEntity对象包含 http状态 信息 body信息
  13. */
  14. ResponseEntity<String> listOwner(IPageData pd);
  15. /**
  16. * 查询业主成员
  17. *
  18. * @param pd 页面数据封装对象
  19. * @return 返回 ResponseEntity对象包含 http状态 信息 body信息
  20. */
  21. public ResponseEntity<String> listOwnerMember(IPageData pd);
  22. /**
  23. * 添加小区楼信息
  24. *
  25. * @param pd 页面数据封装对象
  26. * @return 返回 ResponseEntity对象包含 http状态 信息 body信息
  27. */
  28. ResponseEntity<String> saveOwner(IPageData pd);
  29. /**
  30. * 编辑小区楼信息
  31. *
  32. * @param pd 页面数据封装对象
  33. * @return 返回 ResponseEntity对象包含 http状态 信息 body信息
  34. */
  35. ResponseEntity<String> editOwner(IPageData pd);
  36. /**
  37. * 删除小区楼
  38. *
  39. * @param pd 页面数据封装对象
  40. * @return 返回 ResponseEntity对象包含 http状态 信息 body信息
  41. */
  42. ResponseEntity<String> deleteOwner(IPageData pd);
  43. }