コード例 #1
0
ファイル: PostAction.java プロジェクト: linyusheng/IT_BBS
 /** 进入待解决问题页 */
 public String activePost() throws Exception {
   publicLoad();
   if (pageBean == null) {
     pageBean = new PageBean();
   }
   postColl = postService.listActivePost(pageBean);
   return "success";
 }
コード例 #2
0
ファイル: PostAction.java プロジェクト: linyusheng/IT_BBS
 /** 统计三个问题的总量和最新评论 */
 public void publicLoad() throws Exception {
   postNum[0] = postService.listActivePost(null).size();
   postNum[1] = postService.listSolvedPost(null).size();
   postNum[2] = postService.listHotPost(null).size();
   PageBean page = new PageBean();
   page.setPageSize(10);
   newReplyColl = replyService.listReply(page);
 }