shane
2021-07-12 b555bdde876199ea4d3f2f9126f20f6e94b3e890
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) {