| | |
| | | package com.java110.fee.smo.impl; |
| | | |
| | | import com.java110.core.base.smo.BaseServiceSMO; |
| | | import com.java110.dto.fee.TempCarFeeConfigDto; |
| | | import com.java110.fee.dao.IPrestoreFeeServiceDao; |
| | | import com.java110.dto.report.ReportQueryRecord; |
| | | import com.java110.fee.dao.IReportFeeServiceDao; |
| | | import com.java110.intf.fee.IPrestoreFeeInnerServiceSMO; |
| | | import com.java110.intf.fee.IReportFeeInnerServiceSMO; |
| | | import com.java110.vo.FeeQueryParams; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.http.ResponseEntity; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | import java.util.List; |
| | |
| | | public List<Map> repostPaidInFeeTwo(FeeQueryParams feeQueryParams) { |
| | | return iReportFeeServiceDao.repostPaidInFeeTwo(feeQueryParams); |
| | | } |
| | | |
| | | @Override |
| | | public int saveReport(Map map) { |
| | | return iReportFeeServiceDao.saveReport(map); |
| | | } |
| | | |
| | | @Override |
| | | public List<ReportQueryRecord> queryReport(Map map) { |
| | | |
| | | return iReportFeeServiceDao.queryReport(map); |
| | | } |
| | | } |