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