xiaoyong931011
2021-12-20 ab7ad951ca58764c8370d0adfab96600227def39
1
2
3
4
5
6
7
8
9
10
11
12
<?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="cc.mrbird.febs.video.mapper.VideoCommentLikeMapper">
 
 
 
    <select id="selectCommentLikeByMemberIdAndRelateId" resultType="cc.mrbird.febs.video.entity.VideoCommentLikeEntity">
        select * from video_comment_like where member_id = #{memberId} and relate_id = #{relateId}
    </select>
 
 
</mapper>