From 3ea3c013bb241c05d0e6a2c4344d9b708ffa1e61 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Thu, 09 Mar 2023 16:01:46 +0800 Subject: [PATCH] 下单,余额支付,转账,分享奖,星级奖励,商品贡献值,补贴三倍回购 --- src/main/resources/mapper/modules/MallMoneyFlowMapper.xml | 31 +++++++++++++++++++++++++++++++ 1 files changed, 31 insertions(+), 0 deletions(-) diff --git a/src/main/resources/mapper/modules/MallMoneyFlowMapper.xml b/src/main/resources/mapper/modules/MallMoneyFlowMapper.xml index 33d93b7..4fa7a82 100644 --- a/src/main/resources/mapper/modules/MallMoneyFlowMapper.xml +++ b/src/main/resources/mapper/modules/MallMoneyFlowMapper.xml @@ -73,6 +73,7 @@ a.amount amount, a.amount_fee amountFee, a.withdraw_no withdrawNo, + a.remark remark, a.status status, b.name, b.bind_phone bindPhone, @@ -131,4 +132,34 @@ and date_format(created_time, '%Y-%m-%d') = date_format(#{date}, '%Y-%m-%d') and type in (2,3,4) </select> + + <insert id="insertMoneyFlow" parameterType="cc.mrbird.febs.mall.entity.MallMoneyFlow"> + insert into mall_money_flow( + REVISION, + CREATED_BY, + CREATED_TIME, + UPDATED_BY, + UPDATED_TIME, + member_id, + amount, + type, + order_no, + rt_member_id, + status, + flow_type) VALUES + ( + #{revision}, + #{createdBy}, + #{createdTime}, + #{updatedBy}, + #{updatedTime}, + #{memberId}, + #{amount}, + #{type}, + #{orderNo}, + #{rtMemberId}, + #{status}, + #{flowType} + ) + </insert> </mapper> \ No newline at end of file -- Gitblit v1.9.1