From abbb3326355de35bcb535deba49d8da704d92d63 Mon Sep 17 00:00:00 2001
From: Helius <wangdoubleone@gmail.com>
Date: Thu, 15 Jul 2021 10:49:50 +0800
Subject: [PATCH] Merge branch 'score-shop' of http://120.27.238.55:7000/r/xzx into score-shop

---
 gc-user/src/main/resources/mapper/user/AccountMapper.xml |   37 ++++++++++++++++++++++++++++++++++++-
 1 files changed, 36 insertions(+), 1 deletions(-)

diff --git a/gc-user/src/main/resources/mapper/user/AccountMapper.xml b/gc-user/src/main/resources/mapper/user/AccountMapper.xml
index 14f9d3d..cdb5525 100644
--- a/gc-user/src/main/resources/mapper/user/AccountMapper.xml
+++ b/gc-user/src/main/resources/mapper/user/AccountMapper.xml
@@ -161,10 +161,45 @@
             1=1
             <if test="record.queryCol != null and record.queryCol != ''">
                 and (b.nick_name like concat('%',#{record.name},'%')
-                or mobile_phone like concat('%',#{record.phone},'%') )
+                or b.mobile_phone like concat('%',#{record.phone},'%') )
             </if>
         </where>
         order by id desc
     </select>
 
+    <select id="selectDsitribInfoListByQueryCol" resultType="com.xzx.gc.user.vo.DistribInfoListVo">
+        SELECT
+        a.account_id id,
+        b.nick_name nickname,
+        b.mobile_phone phone,
+        b.regist_time registTime,
+        a.is_head isHead,
+        (select IFNULL(count(1), 0) from xzx_user_head_relate where head_user_id = a.user_id GROUP BY head_user_id) cnt,
+        (select IFNULL(count(1), 0) from xzx_user_head_details where head_user_id = a.user_id GROUP BY head_user_id) orderCnt,
+        (select IFNULL(sum(amount), 0) from xzx_user_head_relate where head_user_id = a.user_id GROUP BY head_user_id) amount,
+        (select IFNULL(sum(score), 0) from xzx_user_head_relate where head_user_id = a.user_id GROUP BY head_user_id) score,
+        a.is_prohibit isProhibit
+        FROM
+        xzx_account_info a
+        LEFT JOIN xzx_user_info b on a.user_id = b.user_id
+        <where>
+            1=1
+            and a.is_head = 1
+            <if test="record.name != null and record.name != ''">
+                and b.nick_name like concat('%',#{record.name},'%')
+            </if>
+            <if test="record.phone != null and record.phone != ''">
+                and b.mobile_phone like concat('%',#{record.phone},'%')
+            </if>
+            <if test="record.reserveTimeStart != null">
+                and b.regist_time >= #{record.reserveTimeStart}
+            </if>
+
+            <if test="record.reserveTimeEnd != null">
+                and b.regist_time &lt;= #{record.reserveTimeEnd}
+            </if>
+        </where>
+         order by id desc
+    </select>
+
 </mapper>

--
Gitblit v1.9.1