From c796e39e718a52446769f531771773cb2b9c9fc8 Mon Sep 17 00:00:00 2001 From: Administrator <15274802129@163.com> Date: Sun, 27 Apr 2025 11:16:09 +0800 Subject: [PATCH] feat(mall): 为活动详情添加点赞数和转发数功能 - 在 ApiActivityVo 中添加 zanCnt 和 sendCnt 字段- 在 HappyActivityServiceImpl 中实现点赞数和转发数的查询逻辑 - 通过 Stream 流操作对不同类型的操作进行分类计数 --- src/main/resources/mapper/modules/MallMemberMapper.xml | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/src/main/resources/mapper/modules/MallMemberMapper.xml b/src/main/resources/mapper/modules/MallMemberMapper.xml index 37a2332..5dff51a 100644 --- a/src/main/resources/mapper/modules/MallMemberMapper.xml +++ b/src/main/resources/mapper/modules/MallMemberMapper.xml @@ -11,6 +11,9 @@ left join mall_vip_config vipConfig on m.level = vipConfig.code <where> <if test="record != null" > + <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},'%') </if> @@ -439,4 +442,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