KKSU
2023-11-24 8143212a0a278d2b72fa2caf0e8c7a4f5a13e763
src/main/resources/mapper/modules/MallMemberMapper.xml
@@ -477,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>