java110
2022-03-14 bcc17f20197a0cabd210a03946b858241a5e3ed5
service-report/src/main/java/com/java110/report/smo/impl/ReportOwnerPayFeeInnerServiceSMOImpl.java
@@ -67,6 +67,21 @@
        return reportOwnerPayFees;
    }
    @Override
    public List<ReportOwnerPayFeeDto> queryReportOwnerMonthPayFees(ReportOwnerPayFeeDto reportOwnerPayFeeDto) {
        //校验是否传了 分页信息
        int page = reportOwnerPayFeeDto.getPage();
        if (page != PageDto.DEFAULT_PAGE) {
            reportOwnerPayFeeDto.setPage((page - 1) * reportOwnerPayFeeDto.getRow());
        }
        List<ReportOwnerPayFeeDto> reportOwnerPayFees = BeanConvertUtil.covertBeanList(reportOwnerPayFeeServiceDaoImpl.queryReportOwnerMonthPayFees(BeanConvertUtil.beanCovertMap(reportOwnerPayFeeDto)), ReportOwnerPayFeeDto.class);
        return reportOwnerPayFees;
    }
    @Override
    public int queryReportOwnerPayFeesCount(@RequestBody ReportOwnerPayFeeDto reportOwnerPayFeeDto) {