From d0b1d1559eefa7bbf9dd321b45e8f0ed4ee1fdb0 Mon Sep 17 00:00:00 2001
From: KKSU <15274802129@163.com>
Date: Tue, 31 Dec 2024 10:05:19 +0800
Subject: [PATCH] 11、(这个可以)用户注册信息更改--------用户注册后是否可以满足用户更换头像,填写具体信息(生日、性别等等) feat(mall): 会员信息修改接口增加性别和生日字段

---
 src/main/resources/mapper/modules/MallVipConfigMapper.xml |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/src/main/resources/mapper/modules/MallVipConfigMapper.xml b/src/main/resources/mapper/modules/MallVipConfigMapper.xml
index 6d9609d..2778b2d 100644
--- a/src/main/resources/mapper/modules/MallVipConfigMapper.xml
+++ b/src/main/resources/mapper/modules/MallVipConfigMapper.xml
@@ -26,6 +26,9 @@
 
             <collection property="details" ofType="cc.mrbird.febs.vip.entity.MallVipBenefitsDetails">
                 <id property="id" column="d_id" />
+                <id property="content" column="d_content" />
+                <id property="linkType" column="d_link_type" />
+                <id property="isClick" column="d_is_click" />
             </collection>
         </collection>
     </resultMap>
@@ -58,9 +61,14 @@
              ,benefits.score_multiple
              ,benefits.gain_type
              ,benefits.type c_type
+             ,details.id d_id
+             ,details.content d_content
+             ,details.link_type d_link_type
+             ,details.is_click d_is_click
         from mall_vip_config config
                  inner join mall_vip_config_benefits configBenefits on config.id=configBenefits.config_id
                  inner join mall_vip_benefits benefits on configBenefits.benefits_id=benefits.id
+                 left join mall_vip_benefits_details details on benefits.id = details.benefits_id
         where config.code=#{code}
     </select>
 </mapper>
\ No newline at end of file

--
Gitblit v1.9.1