From 2886ce0e06d822d5295cf8706cac417d1ea98e80 Mon Sep 17 00:00:00 2001
From: KKSU <15274802129@163.com>
Date: Mon, 02 Sep 2024 11:23:18 +0800
Subject: [PATCH] test和数据库连接
---
src/main/resources/mapper/modules/MallOrderInfoMapper.xml | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/main/resources/mapper/modules/MallOrderInfoMapper.xml b/src/main/resources/mapper/modules/MallOrderInfoMapper.xml
index 9e7f9e6..58297b2 100644
--- a/src/main/resources/mapper/modules/MallOrderInfoMapper.xml
+++ b/src/main/resources/mapper/modules/MallOrderInfoMapper.xml
@@ -159,9 +159,9 @@
</collection>
</resultMap>
- <select id="selectApiOrderListInPage" resultType="cc.mrbird.febs.mall.entity.MallOrderInfo">
+ <select id="selectApiOrderListInPage" resultMap="OrderInfoMap">
select
- a.*
+ *
from mall_order_info a
inner join mall_order_item b on a.id=b.order_id
<where>
@@ -438,7 +438,7 @@
<select id="getGoodsStatisticsInPage" resultType="cc.mrbird.febs.mall.vo.AdminGoodsStatisticsVo">
select
- goods_name goodsName,
+ CONCAT(goods_name, '---', sku_name) goodsName,
SUM(cnt) goodsCnt
from mall_order_item
<where>
@@ -450,7 +450,7 @@
</foreach>
</if>
</where>
- GROUP BY goods_id
+ GROUP BY goods_id,goods_name,sku_name
ORDER BY goods_id desc
</select>
@@ -458,12 +458,12 @@
select IFNULL(sum(IFNULL(a.amount,0)),0) from mall_order_info a
inner join mall_member b on a.member_id=b.ID
<where>
- a.status in (2,3,4)
+ a.status = 4
<if test="type == 1">
and b.invite_id=#{inviteId}
</if>
<if test="type == 2">
- and FIND_IN_SET(#{inviteId},b.referrer_ids)
+ and b.referrer_id=#{inviteId}
</if>
</where>
</select>
--
Gitblit v1.9.1