| | |
| | | |
| | | import com.java110.core.context.IPageData; |
| | | import com.java110.report.smo.fee.IListPayFeeSMO; |
| | | import com.java110.report.smo.feeType.IFeeTypeSMO; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.http.ResponseEntity; |
| | | import org.springframework.stereotype.Component; |
| | |
| | | @Autowired |
| | | private IListPayFeeSMO listPayFeeSMOImpl; |
| | | |
| | | @Autowired |
| | | private IFeeTypeSMO feeTypeSMOImpl; |
| | | |
| | | /** |
| | | * 查询费用类型 |
| | | * @param pd |
| | | * @return |
| | | */ |
| | | public ResponseEntity<String> listFeeType(IPageData pd){ |
| | | return feeTypeSMOImpl.list(pd); |
| | | } |
| | | |
| | | /** |
| | | * 查询应用列表 |
| | | * |