的
public List<Topic> findByForum(Forum forum) {
return getSession().createQuery(//
// TODO 怎么排序
"FROM Topic t WHERE t.forum=? ORDER BY (CASE t.type WHEN 2 THEN 2 ELSE 0 END) DESC, t.lastUpdateTime DESC")//
.setParameter(0, forum).list();
}