| | |
| | | <result column="master_comment_id" property="masterCommentId" /> |
| | | <result column="status" property="status" /> |
| | | <result column="thumbs_up_num" property="thumbsUpNum" /> |
| | | <result column="userId" property="userId" /> |
| | | <result column="user_id" property="userId" /> |
| | | <result column="user_nickname" property="userNickname" /> |
| | | <result column="user_avatar" property="userAvatar" /> |
| | | <result column="create_time" property="createTime" /> |
| | |
| | | |
| | | <select id="countNumGroupByVideo" resultType="cn.lili.modules.lmk.domain.vo.CollectTypeNumVO"> |
| | | SELECT |
| | | video_id as id, |
| | | COUNT(*) as countNum |
| | | LV.id as id, |
| | | COUNT(LVC.video_id) as countNum |
| | | FROM |
| | | lmk_video_comment |
| | | lmk_video LV |
| | | LEFT JOIN lmk_video_comment LVC ON LVC.video_id = LV.id AND LVC.delete_flag = 0 AND LVC.status = 'normal' |
| | | WHERE |
| | | delete_flag = 0 AND status = 'normal' |
| | | LV.comment_num_job = 1 AND LV.delete_flag = 0 AND LV.status = '1' |
| | | GROUP BY |
| | | video_id |
| | | LVC.video_id |
| | | </select> |
| | | |
| | | |