| | |
| | | <mapper namespace="cc.mrbird.febs.video.mapper.VideoMemberMapper"> |
| | | |
| | | <select id="selectInfoByAccount" resultType="cc.mrbird.febs.video.entity.VideoMemberEntity"> |
| | | select * from video_member where phone=#{account} or email=#{account} or invite_id=#{account} |
| | | select * from video_member where account=#{account} or invite_id=#{account} |
| | | </select> |
| | | |
| | | <select id="selectInfoByInviteId" resultType="cc.mrbird.febs.video.entity.VideoMemberEntity"> |
| | |
| | | </select> |
| | | |
| | | <select id="selectInfoByAccountAndPwd" resultType="cc.mrbird.febs.video.entity.VideoMemberEntity"> |
| | | select * from video_member where (phone=#{account} or email=#{account}) and password=#{password} |
| | | select * from video_member where account=#{account} and password=#{password} |
| | | </select> |
| | | |
| | | </mapper> |