lrj
1 天以前 9f8395fab13ca4b230a0f7d62636e209745c91d4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package com.rongyichuang.dashboard.dto.response;
 
/**
 * Dashboard 统计数据响应
 */
public class DashboardStatsResponse {
    
    /**
     * 当前进行比赛数量
     */
    private Integer activeActivities = 0;
    
    /**
     * 参赛总人数
     */
    private Integer totalPlayers = 0;
    
    /**
     * 报名待审核人数
     */
    private Integer pendingReviews = 0;
    
    /**
     * 评委总数
     */
    private Integer totalJudges = 0;
 
    public Integer getActiveActivities() {
        return activeActivities;
    }
 
    public void setActiveActivities(Integer activeActivities) {
        this.activeActivities = activeActivities;
    }
 
    public Integer getTotalPlayers() {
        return totalPlayers;
    }
 
    public void setTotalPlayers(Integer totalPlayers) {
        this.totalPlayers = totalPlayers;
    }
 
    public Integer getPendingReviews() {
        return pendingReviews;
    }
 
    public void setPendingReviews(Integer pendingReviews) {
        this.pendingReviews = pendingReviews;
    }
 
    public Integer getTotalJudges() {
        return totalJudges;
    }
 
    public void setTotalJudges(Integer totalJudges) {
        this.totalJudges = totalJudges;
    }
}