| | |
| | | package com.java110.web.components.fee; |
| | | |
| | | import com.java110.common.constant.FeeTypeConstant; |
| | | import com.java110.core.context.IPageData; |
| | | import com.java110.web.smo.IFeeServiceSMO; |
| | | import com.java110.web.smo.feeConfig.IListFeeConfigsSMO; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.http.ResponseEntity; |
| | | import org.springframework.stereotype.Component; |
| | |
| | | @Autowired |
| | | private IFeeServiceSMO feeServiceSMOImpl; |
| | | |
| | | @Autowired |
| | | private IListFeeConfigsSMO listFeeConfigsSMOImpl; |
| | | |
| | | public ResponseEntity<String> loadPropertyConfigData(IPageData pd) { |
| | | return feeServiceSMOImpl.loadPropertyConfigFee(pd, FeeTypeConstant.FEE_TYPE_PROPERTY); |
| | | return listFeeConfigsSMOImpl.listFeeConfigs(pd); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 缴费 |
| | | * |
| | | * @param pd 页面数据封装 |
| | | * @return 缴费接口 |
| | | */ |