lrj
1 天以前 93eb6b470773bc49ea6e1a9d4cbd914eb95d525b
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
60
61
62
63
64
65
66
67
68
69
70
71
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;
    }
}