/*修改视频的差评次数*/
 public void updateVideoOnCai(Video video) {
   video.setBadCommentCount(video.getBadCommentCount() + 1);
   videoDao.update(video);
 }