| | |
| | | package com.java110.web.components.owner; |
| | | |
| | | import com.java110.core.context.IPageData; |
| | | import com.java110.web.smo.IFeeServiceSMO; |
| | | import com.java110.web.smo.IOwnerServiceSMO; |
| | | import com.java110.web.smo.IParkingSpaceServiceSMO; |
| | | import com.java110.web.smo.IRoomServiceSMO; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.http.ResponseEntity; |
| | | import org.springframework.stereotype.Component; |
| | |
| | | @Autowired |
| | | private IOwnerServiceSMO ownerServiceSMOImpl; |
| | | |
| | | @Autowired |
| | | private IRoomServiceSMO roomServiceSMOImpl; |
| | | |
| | | @Autowired |
| | | private IParkingSpaceServiceSMO parkingSpaceServiceSMOImpl; |
| | | |
| | | /** |
| | | * 查询小区楼信息 |
| | | * |
| | |
| | | return ownerServiceSMOImpl.listOwner(pd); |
| | | } |
| | | |
| | | public ResponseEntity<String> getRooms(IPageData pd) { |
| | | return roomServiceSMOImpl.listRoomByOwner(pd); |
| | | } |
| | | |
| | | public ResponseEntity<String> getParkingSpace(IPageData pd) { |
| | | return parkingSpaceServiceSMOImpl.listParkingSpaceByOwner(pd); |
| | | } |
| | | |
| | | |
| | | public IOwnerServiceSMO getOwnerServiceSMOImpl() { |
| | | return ownerServiceSMOImpl; |
| | |
| | | public void setOwnerServiceSMOImpl(IOwnerServiceSMO ownerServiceSMOImpl) { |
| | | this.ownerServiceSMOImpl = ownerServiceSMOImpl; |
| | | } |
| | | |
| | | public IRoomServiceSMO getRoomServiceSMOImpl() { |
| | | return roomServiceSMOImpl; |
| | | } |
| | | |
| | | public void setRoomServiceSMOImpl(IRoomServiceSMO roomServiceSMOImpl) { |
| | | this.roomServiceSMOImpl = roomServiceSMOImpl; |
| | | } |
| | | |
| | | public IParkingSpaceServiceSMO getParkingSpaceServiceSMOImpl() { |
| | | return parkingSpaceServiceSMOImpl; |
| | | } |
| | | |
| | | public void setParkingSpaceServiceSMOImpl(IParkingSpaceServiceSMO parkingSpaceServiceSMOImpl) { |
| | | this.parkingSpaceServiceSMOImpl = parkingSpaceServiceSMOImpl; |
| | | } |
| | | } |