package com.rongyichuang.player.dto.response;
|
|
import java.math.BigDecimal;
|
|
/**
|
* 评委评分状态响应
|
*/
|
public class JudgeRatingStatusResponse {
|
|
private Long judgeId;
|
private String judgeName;
|
private BigDecimal totalScore;
|
private Integer status;
|
private Boolean isCurrentJudge;
|
|
public JudgeRatingStatusResponse() {}
|
|
public JudgeRatingStatusResponse(Long judgeId, String judgeName, BigDecimal totalScore,
|
Integer status, Boolean isCurrentJudge) {
|
this.judgeId = judgeId;
|
this.judgeName = judgeName;
|
this.totalScore = totalScore;
|
this.status = status;
|
this.isCurrentJudge = isCurrentJudge;
|
}
|
|
public Long getJudgeId() {
|
return judgeId;
|
}
|
|
public void setJudgeId(Long judgeId) {
|
this.judgeId = judgeId;
|
}
|
|
public String getJudgeName() {
|
return judgeName;
|
}
|
|
public void setJudgeName(String judgeName) {
|
this.judgeName = judgeName;
|
}
|
|
public BigDecimal getTotalScore() {
|
return totalScore;
|
}
|
|
public void setTotalScore(BigDecimal totalScore) {
|
this.totalScore = totalScore;
|
}
|
|
public Integer getStatus() {
|
return status;
|
}
|
|
public void setStatus(Integer status) {
|
this.status = status;
|
}
|
|
public Boolean getIsCurrentJudge() {
|
return isCurrentJudge;
|
}
|
|
public void setIsCurrentJudge(Boolean isCurrentJudge) {
|
this.isCurrentJudge = isCurrentJudge;
|
}
|
}
|