From 37aa64f98149cae60c6a6be2935ecfb46e1e4517 Mon Sep 17 00:00:00 2001
From: Administrator <15274802129@163.com>
Date: Mon, 12 May 2025 16:45:32 +0800
Subject: [PATCH] feat(mall): 会员等级名称展示及积分改名
---
src/main/resources/mapper/modules/MallMemberMapper.xml | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++--
1 files changed, 52 insertions(+), 2 deletions(-)
diff --git a/src/main/resources/mapper/modules/MallMemberMapper.xml b/src/main/resources/mapper/modules/MallMemberMapper.xml
index 91ea9a7..307315a 100644
--- a/src/main/resources/mapper/modules/MallMemberMapper.xml
+++ b/src/main/resources/mapper/modules/MallMemberMapper.xml
@@ -11,8 +11,8 @@
left join mall_vip_config vipConfig on m.level = vipConfig.code
<where>
<if test="record != null" >
- <if test="record.birthday!=null">
- and m.birthday = #{record.birthday}
+ <if test="record.birthdayQuery!=null">
+ and date_format(m.birthday, '%m-%d') = date_format(#{record.birthdayQuery}, '%m-%d')
</if>
<if test="record.name!=null and record.name!=''">
and m.name like concat('%', #{record.name},'%')
@@ -40,6 +40,48 @@
</if>
</where>
GROUP BY m.id order by m.CREATED_TIME desc
+ </select>
+
+ <select id="selectHappyMemberListInPage" resultType="cc.mrbird.febs.mall.entity.MallMember">
+ SELECT
+ a.*,
+ b.name storeMasterName,
+ c.name directorName
+ FROM mall_member a
+ left join happy_sale_level b on b.code = a.store_master
+ left join happy_member_level c on c.code = a.director
+ <where>
+ <if test="record != null" >
+ <if test="record.birthdayQuery!=null">
+ and date_format(a.birthday, '%m-%d') = date_format(#{record.birthdayQuery}, '%m-%d')
+ </if>
+ <if test="record.name!=null and record.name!=''">
+ and a.name like concat('%', #{record.name},'%')
+ </if>
+ <if test="record.phone!=null and record.phone!=''">
+ and a.phone like concat('%', #{record.phone},'%')
+ </if>
+ <if test="record.accountStatus!=null">
+ and a.account_status = #{record.accountStatus}
+ </if>
+ <if test="record.director!=null">
+ and a.director = #{record.director}
+ </if>
+ <if test="record.storeMaster!=null">
+ and a.store_master = #{record.storeMaster}
+ </if>
+ <if test="record.accountType != null" >
+ and a.account_type = #{record.accountType}
+ </if>
+ <if test="record.level!=null and record.level!=''">
+ and a.level=#{record.level}
+ </if>
+ <if test="record.checkOrder!=null">
+ and a.check_order=#{record.checkOrder}
+ </if>
+ </if>
+ </where>
+ GROUP BY a.id order by a.CREATED_TIME desc
</select>
<select id="getMallMemberInfoById" resultType="cc.mrbird.febs.mall.vo.MallMemberVo">
@@ -442,4 +484,12 @@
where id = #{id}
</update>
+
+
+ <update id="updateLastLoginTime">
+ update mall_member
+ set last_login_time = #{lastLoginTime}
+ where id = #{id}
+ </update>
+
</mapper>
\ No newline at end of file
--
Gitblit v1.9.1