| | |
| | | |
| | | |
| | | import com.java110.core.context.IPageData; |
| | | import com.java110.web.smo.IRoomServiceSMO; |
| | | import com.java110.web.smo.ownerRepair.IListOwnerRepairsSMO; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.http.ResponseEntity; |
| | |
| | | @Autowired |
| | | private IListOwnerRepairsSMO listOwnerRepairsSMOImpl; |
| | | |
| | | @Autowired |
| | | private IRoomServiceSMO roomServiceSMOImpl; |
| | | |
| | | /** |
| | | * 查询业主报修列表 |
| | | * @param pd 页面数据封装 |
| | |
| | | return listOwnerRepairsSMOImpl.listOwnerRepairs(pd); |
| | | } |
| | | |
| | | public ResponseEntity<String> getRoom(IPageData pd){ |
| | | |
| | | return roomServiceSMOImpl.listRoom(pd); |
| | | } |
| | | |
| | | public IListOwnerRepairsSMO getListOwnerRepairsSMOImpl() { |
| | | return listOwnerRepairsSMOImpl; |
| | | } |
| | |
| | | public void setListOwnerRepairsSMOImpl(IListOwnerRepairsSMO listOwnerRepairsSMOImpl) { |
| | | this.listOwnerRepairsSMOImpl = listOwnerRepairsSMOImpl; |
| | | } |
| | | |
| | | public IRoomServiceSMO getRoomServiceSMOImpl() { |
| | | return roomServiceSMOImpl; |
| | | } |
| | | |
| | | public void setRoomServiceSMOImpl(IRoomServiceSMO roomServiceSMOImpl) { |
| | | this.roomServiceSMOImpl = roomServiceSMOImpl; |
| | | } |
| | | } |