From 58f480d4e4b0e79722a3b6ac20f3b259c410c2d0 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Thu, 26 Oct 2023 14:37:17 +0800 Subject: [PATCH] 版本管理 --- src/main/resources/mapper/modules/ChatUserMapper.xml | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/src/main/resources/mapper/modules/ChatUserMapper.xml b/src/main/resources/mapper/modules/ChatUserMapper.xml index 150afa0..5847b58 100644 --- a/src/main/resources/mapper/modules/ChatUserMapper.xml +++ b/src/main/resources/mapper/modules/ChatUserMapper.xml @@ -360,6 +360,20 @@ </if> </select> + + <select id="selectTotalTypeByUserId" resultType="java.math.BigDecimal"> + select IFNULL(sum(IFNULL(amount,0)),0) + from chat_amount_flow + where type = #{type} + and user_id = #{userId} + <if test='dateType == "D"'> + and date_format(create_time, '%Y-%m-%d') = date_format(#{date}, '%Y-%m-%d'); + </if> + <if test='dateType == "M"'> + and date_format(create_time, '%Y-%m') = date_format(#{date}, '%Y-%m'); + </if> + </select> + <select id="selectUserList" resultType="cc.mrbird.febs.mall.entity.ChatUser"> select a.* -- Gitblit v1.9.1