zainali5120
2020-11-15 5f3f7f33303c1b96a36de3b91155e49f3a56ff09
1
2
3
4
5
6
7
8
9
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.xcong.excoin.modules.member.mapper.MemberAuthenticationMapper">
 
    <select id="findMemberAuthenticationByMemberId" resultType="com.xcong.excoin.modules.member.vo.MemberAuthenticationVo">
        select * from member a LEFT JOIN member_authentication m on m.member_id = a.id where a.id = #{id}
    </select>
    
</mapper>