| | |
| | | |
| | | import com.java110.core.context.IPageData; |
| | | import com.java110.web.smo.IFeeServiceSMO; |
| | | import com.java110.web.smo.feeConfig.IListFeeSMO; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.http.ResponseEntity; |
| | | import org.springframework.stereotype.Component; |
| | |
| | | @Autowired |
| | | private IFeeServiceSMO feeServiceSMOImpl; |
| | | |
| | | @Autowired |
| | | private IListFeeSMO listFeeSMOImpl; |
| | | |
| | | public ResponseEntity<String> getFee(IPageData pd) { |
| | | return feeServiceSMOImpl.loadFeeByRoomId(pd); |
| | | return listFeeSMOImpl.list(pd); |
| | | } |
| | | |
| | | |