From 7cf7a80569d3cb907e0260abc3b2dbd36ec6c4c2 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Thu, 22 Sep 2022 18:08:47 +0800 Subject: [PATCH] Merge branch 'group_buy' of http://120.27.238.55:7000/r/xc-mall into group_buy --- src/main/resources/mapper/modules/MallMoneyFlowMapper.xml | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-) diff --git a/src/main/resources/mapper/modules/MallMoneyFlowMapper.xml b/src/main/resources/mapper/modules/MallMoneyFlowMapper.xml index 9089ced..bb1a982 100644 --- a/src/main/resources/mapper/modules/MallMoneyFlowMapper.xml +++ b/src/main/resources/mapper/modules/MallMoneyFlowMapper.xml @@ -136,4 +136,26 @@ select a.* from mall_money_flow a where a.order_no = #{rechargeNo} and a.member_id = #{memberId} </select> + + <select id="selectAmountByFlowtypeAndType" resultType="java.math.BigDecimal"> + select ifnull(sum(a.amount),0) from mall_money_flow a + <where> + a.member_id = #{memberId} + <if test="flowType!=null and flowType!=''"> + and a.flow_type = #{flowType} + </if> + <if test="type!=null and type!=''"> + and a.type = #{type} + </if> + <if test="status!=null and status!=''"> + and a.status = #{status} + </if> + <if test="dateDay!=null"> + and date_format(a.created_time, '%Y-%m-%d') = date_format(#{dateDay}, '%Y-%m-%d') + </if> + <if test="dateMonth!=null"> + and date_format(a.created_time, '%Y-%m') = date_format(#{dateMonth}, '%Y-%m') + </if> + </where> + </select> </mapper> \ No newline at end of file -- Gitblit v1.9.1