java110
2023-05-25 4d8d68974547f07fdeaaaca6398832f37382be3b
optimize
1个文件已修改
4 ■■■■ 已修改文件
java110-db/src/main/resources/mapper/report/ReportFeeStatisticsServiceDaoImplMapper.xml 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
java110-db/src/main/resources/mapper/report/ReportFeeStatisticsServiceDaoImplMapper.xml
@@ -821,7 +821,7 @@
    <!-- 查询预存账户-->
    <select id="getPrestoreAccount" parameterType="Map" resultType="Map">
        select ifnull(SUM(t.discount_amount),0.0) prestoreAccount lateFee
        select ifnull(SUM(t.discount_amount),0.0) prestoreAccount
        from account_detail t
        INNER JOIN account ac on t.acct_id = ac.acct_id and ac.status_cd = '0'
        where 1=1
@@ -835,7 +835,7 @@
    <!-- 查询账户扣款-->
    <select id="getWithholdAccount" parameterType="Map" resultType="Map">
        select ifnull(SUM(t.discount_amount),0.0) withholdAccount lateFee
        select ifnull(SUM(t.discount_amount),0.0) lateFee
        from account_detail t
        INNER JOIN account ac on t.acct_id = ac.acct_id and ac.status_cd = '0'
        where 1=1