Ejemplo n.º 1
0
 /**
  * 米客中心-喜欢的期刊(滚动加载)
  *
  * @return
  */
 public String enjoyIssueJson() {
   // 查询用户喜欢的所有期刊
   this.issueList = issueService.getEnjoyIssueList(tagName, this.userId, begin, size);
   this.generateJsonResult(JsonResult.CODE.SUCCESS, JsonResult.MESSAGE.SUCCESS);
   this.jsonResult.put("issueList", issueList);
   return JSON;
 }
Ejemplo n.º 2
0
 /**
  * 米客中心-喜欢的期刊
  *
  * @return
  */
 public String enjoyIssue() {
   statsMap();
   // 用户喜欢的所有期刊对应的标签
   this.tagList =
       tagService.getEnjoyTagList(new Integer[] {PojoConstant.TAG.TYPE_ISSUE}, this.userId, 0, 30);
   // 查询用户喜欢的所有期刊
   this.issueList = issueService.getEnjoyIssueList(tagName, this.userId, begin, size);
   this.tab = "enjoyIssue";
   return "enjoyIssue";
 }