Search in sources :

Example 1 with Statistics

use of com.tale.dto.Statistics in project tale by otale.

the class IndexController method index.

/**
     * 仪表盘
     */
@Route(value = { "/", "index" }, method = HttpMethod.GET)
public String index(Request request) {
    List<Comments> comments = siteService.recentComments(5);
    List<Contents> contents = siteService.getContens(Types.RECENT_ARTICLE, 5);
    Statistics statistics = siteService.getStatistics();
    // 取最新的20条日志
    List<Logs> logs = logService.getLogs(1, 20);
    request.attribute("comments", comments);
    request.attribute("articles", contents);
    request.attribute("statistics", statistics);
    request.attribute("logs", logs);
    return "admin/index";
}
Also used : Contents(com.tale.model.Contents) Comments(com.tale.model.Comments) Logs(com.tale.model.Logs) Statistics(com.tale.dto.Statistics) Route(com.blade.mvc.annotation.Route)

Aggregations

Route (com.blade.mvc.annotation.Route)1 Statistics (com.tale.dto.Statistics)1 Comments (com.tale.model.Comments)1 Contents (com.tale.model.Contents)1 Logs (com.tale.model.Logs)1