lrj
昨天 dc643ba44fd2a426263015491268a0f0d6b4671d
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
package com.rongyichuang.player.dto;
 
import java.util.List;
 
/**
 * 晋级操作输入类
 */
public class PromotionInput {
    
    private Long competitionId;
    private List<Long> participantIds;
    private Long targetStageId;
    
    public PromotionInput() {}
    
    public PromotionInput(Long competitionId, List<Long> participantIds, Long targetStageId) {
        this.competitionId = competitionId;
        this.participantIds = participantIds;
        this.targetStageId = targetStageId;
    }
    
    // Getters and Setters
    
    public Long getCompetitionId() {
        return competitionId;
    }
    
    public void setCompetitionId(Long competitionId) {
        this.competitionId = competitionId;
    }
    
    public List<Long> getParticipantIds() {
        return participantIds;
    }
    
    public void setParticipantIds(List<Long> participantIds) {
        this.participantIds = participantIds;
    }
    
    public Long getTargetStageId() {
        return targetStageId;
    }
    
    public void setTargetStageId(Long targetStageId) {
        this.targetStageId = targetStageId;
    }
}