Examples of CmsStatisticModel


Examples of com.jeecms.cms.statistic.CmsStatistic.CmsStatisticModel

@Controller
public class CmsStatisticAct {
  @RequestMapping("/statistic_member/v_list.do")
  public String memberList(String queryModel, Integer year, Integer month,
      Integer day, ModelMap model) {
    CmsStatisticModel statisticModel = getStatisticModel(queryModel);
    List<CmsStatistic> list = cmsStatisticSvc.statisticByModel(MEMBER,
        statisticModel, year, month, day, null);
    putCommonData(statisticModel, list, year, month, day, model);
    return "statistic/member/list";
  }
View Full Code Here

Examples of com.jeecms.cms.statistic.CmsStatistic.CmsStatisticModel

    Map<String, Object> restrictions = new HashMap<String, Object>();
    Integer siteId = CmsUtils.getSiteId(request);
    restrictions.put(SITEID, siteId);
    restrictions.put(USERID, queryInputUserId);
    restrictions.put(CHANNELID, channelId);
    CmsStatisticModel statisticModel = getStatisticModel(queryModel);
    List<CmsStatistic> list = cmsStatisticSvc.statisticByModel(CONTENT,
        statisticModel, year, month, day, restrictions);
    List<Channel> topList = channelMng.getTopList(siteId, true);
    List<Channel> channelList = Channel.getListForSelect(topList, null,
        true);
View Full Code Here

Examples of com.jeecms.cms.statistic.CmsStatistic.CmsStatisticModel

      ModelMap model) {
    Map<String, Object> restrictions = new HashMap<String, Object>();
    Integer siteId = CmsUtils.getSiteId(request);
    restrictions.put(SITEID, siteId);
    restrictions.put(ISREPLYED, isReplyed);
    CmsStatisticModel statisticModel = getStatisticModel(queryModel);
    List<CmsStatistic> list = cmsStatisticSvc.statisticByModel(COMMENT,
        statisticModel, year, month, day, restrictions);
    putCommonData(statisticModel, list, year, month, day, model);
    model.addAttribute("isReplyed", isReplyed);
    return "statistic/comment/list";
View Full Code Here

Examples of com.jeecms.cms.statistic.CmsStatistic.CmsStatisticModel

      ModelMap model) {
    Map<String, Object> restrictions = new HashMap<String, Object>();
    Integer siteId = CmsUtils.getSiteId(request);
    restrictions.put(SITEID, siteId);
    restrictions.put(ISREPLYED, isReplyed);
    CmsStatisticModel statisticModel = getStatisticModel(queryModel);
    List<CmsStatistic> list = cmsStatisticSvc.statisticByModel(GUESTBOOK,
        statisticModel, year, month, day, restrictions);
    putCommonData(statisticModel, list, year, month, day, model);
    model.addAttribute("isReplyed", isReplyed);
    return "statistic/guestbook/list";
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.