| | |
| | | |
| | | |
| | | import com.java110.core.context.IPageData; |
| | | import com.java110.report.smo.fee.IListFeeSummarySMO; |
| | | import com.java110.report.smo.fee.IListPayFeeSMO; |
| | | import com.java110.report.smo.feeType.IFeeTypeSMO; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | |
| | | public class FeeSummaryComponent { |
| | | |
| | | @Autowired |
| | | private IListPayFeeSMO listPayFeeSMOImpl; |
| | | private IListFeeSummarySMO listFeeSummarySMOImpl; |
| | | |
| | | |
| | | /** |
| | |
| | | * @return 返回 ResponseEntity 对象 |
| | | */ |
| | | public ResponseEntity<String> list(IPageData pd) { |
| | | return listPayFeeSMOImpl.list(pd); |
| | | return listFeeSummarySMOImpl.list(pd); |
| | | } |
| | | |
| | | public IListPayFeeSMO getListPayFeeSMOImpl() { |
| | | return listPayFeeSMOImpl; |
| | | public IListFeeSummarySMO getListFeeSummarySMOImpl() { |
| | | return listFeeSummarySMOImpl; |
| | | } |
| | | |
| | | public void setListPayFeeSMOImpl(IListPayFeeSMO listPayFeeSMOImpl) { |
| | | this.listPayFeeSMOImpl = listPayFeeSMOImpl; |
| | | public void setListFeeSummarySMOImpl(IListFeeSummarySMO listFeeSummarySMOImpl) { |
| | | this.listFeeSummarySMOImpl = listFeeSummarySMOImpl; |
| | | } |
| | | } |