| 123456789101112131415161718192021222324252627 |
- package com.java110.web.smo;
- import com.java110.core.context.IPageData;
- import org.springframework.http.ResponseEntity;
- /**
- * 小区楼接口类
- */
- public interface IFloorServiceSMO {
- /**
- * 查询小区楼信息
- *
- * @param pd 页面数据封装对象
- * @return 返回 ResponseEntity对象包含 http状态 信息 body信息
- */
- ResponseEntity<String> listFloor(IPageData pd);
- /**
- * 添加小区楼信息
- *
- * @param pd 页面数据封装对象
- * @return 返回 ResponseEntity对象包含 http状态 信息 body信息
- */
- ResponseEntity<String> saveFloor(IPageData pd);
- }
|