chengf
2025-08-18 eb0d880929fccd4998d6b9836077961d1f975fea
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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.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;
import java.util.Map;
 
@RestController
public class ReportFeeInnerServiceSMOImpl extends BaseServiceSMO implements IReportFeeInnerServiceSMO {
 
    @Autowired
    private IReportFeeServiceDao iReportFeeServiceDao;
 
    @Override
    public List<Map> repostPaidInFee(FeeQueryParams feeQueryParams) {
        return iReportFeeServiceDao.repostPaidInFee(feeQueryParams);
    }
}