From 0654e5b02df021714f32ba042ceaf4cbebe9c383 Mon Sep 17 00:00:00 2001 From: zouyu <2723363702@qq.com> Date: 星期三, 13 八月 2025 16:19:00 +0800 Subject: [PATCH] 浪潮对接单点登录:开通接口报错问题修复 --- src/main/resources/mapper/account/AccountExpenseMapper.xml | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/src/main/resources/mapper/account/AccountExpenseMapper.xml b/src/main/resources/mapper/account/AccountExpenseMapper.xml index 909f372..fff6020 100644 --- a/src/main/resources/mapper/account/AccountExpenseMapper.xml +++ b/src/main/resources/mapper/account/AccountExpenseMapper.xml @@ -56,4 +56,18 @@ group by expense_type </select> + <select id="report1" resultType="java.math.BigDecimal"> + SELECT + sum(expense_money) account + FROM account_expense ai + where + expense_type=#{dictValue} + <if test="dateQueryDto.entryDateStart != null and dateQueryDto.entryDateStart != '' "> + AND expense_date >= DATE_FORMAT(#{dateQueryDto.entryDateStart},'%Y-%m-%d') + </if> + <if test="dateQueryDto.entryDateEnd != null and dateQueryDto.entryDateEnd != '' "> + AND expense_date <= DATE_FORMAT(#{dateQueryDto.entryDateEnd},'%Y-%m-%d') + </if> + </select> + </mapper> -- Gitblit v1.9.3