public void downs(Integer id) {
   CmsComment comment = findById(id);
   comment.setDowns((short) (comment.getDowns() + 1));
 }