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