IFloorServiceSMO.java 640 B

123456789101112131415161718192021222324252627
  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 IFloorServiceSMO {
  8. /**
  9. * 查询小区楼信息
  10. *
  11. * @param pd 页面数据封装对象
  12. * @return 返回 ResponseEntity对象包含 http状态 信息 body信息
  13. */
  14. ResponseEntity<String> listFloor(IPageData pd);
  15. /**
  16. * 添加小区楼信息
  17. *
  18. * @param pd 页面数据封装对象
  19. * @return 返回 ResponseEntity对象包含 http状态 信息 body信息
  20. */
  21. ResponseEntity<String> saveFloor(IPageData pd);
  22. }