KKSU
2023-11-24 e9892b2cfb4b33ecb80c033e4074f65a341fc1b3
src/main/resources/mapper/modules/MallMemberMapper.xml
@@ -83,6 +83,10 @@
        select * from mall_member where phone=#{account} or email=#{account} or invite_id=#{account}
    </select>
    <select id="selectInfoByAccountNew" resultType="cc.mrbird.febs.mall.entity.MallMember">
        select * from mall_member where phone = #{phone} and account_login = #{account}
    </select>
    <select id="selectInfoByInviteId" resultType="cc.mrbird.febs.mall.entity.MallMember">
        select * from mall_member where invite_id=#{inviteId}
    </select>
@@ -473,4 +477,14 @@
        select * from mall_member
        where account_login = #{accountLogin} and password = #{password}
    </select>
    <select id="selectByUserKey" resultType="cc.mrbird.febs.mall.entity.MallMember">
        select * from mall_member
        where user_key = #{userKey}
    </select>
    <select id="selectAccountLoginAndUserKey" resultType="cc.mrbird.febs.mall.entity.MallMember">
        select * from mall_member
        where account_login = #{accountLogin} and user_key = #{userKey}
    </select>
</mapper>