package com.rongyichuang.player.dto;
|
|
import java.util.List;
|
|
/**
|
* 可晋级参赛者列表响应类
|
*/
|
public class PromotableParticipantsResponse {
|
|
private List<PromotableParticipantResponse> participants;
|
private Integer selectableCount;
|
private Integer totalCount;
|
private String previousStageName;
|
private String currentStageName;
|
|
public PromotableParticipantsResponse() {}
|
|
public PromotableParticipantsResponse(List<PromotableParticipantResponse> participants,
|
Integer selectableCount,
|
Integer totalCount,
|
String previousStageName,
|
String currentStageName) {
|
this.participants = participants;
|
this.selectableCount = selectableCount;
|
this.totalCount = totalCount;
|
this.previousStageName = previousStageName;
|
this.currentStageName = currentStageName;
|
}
|
|
// Getters and Setters
|
|
public List<PromotableParticipantResponse> getParticipants() {
|
return participants;
|
}
|
|
public void setParticipants(List<PromotableParticipantResponse> participants) {
|
this.participants = participants;
|
}
|
|
public Integer getSelectableCount() {
|
return selectableCount;
|
}
|
|
public void setSelectableCount(Integer selectableCount) {
|
this.selectableCount = selectableCount;
|
}
|
|
public Integer getTotalCount() {
|
return totalCount;
|
}
|
|
public void setTotalCount(Integer totalCount) {
|
this.totalCount = totalCount;
|
}
|
|
public String getPreviousStageName() {
|
return previousStageName;
|
}
|
|
public void setPreviousStageName(String previousStageName) {
|
this.previousStageName = previousStageName;
|
}
|
|
public String getCurrentStageName() {
|
return currentStageName;
|
}
|
|
public void setCurrentStageName(String currentStageName) {
|
this.currentStageName = currentStageName;
|
}
|
}
|