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";