package com.rongyichuang.player.dto.response;
|
|
import java.math.BigDecimal;
|
|
/**
|
* 评委评分状态响应
|
*/
|
public class JudgeRatingStatusResponse {
|
|
private Long judgeId;
|
private String judgeName;
|
private Boolean hasRated;
|
private String ratingTime;
|
private BigDecimal totalScore;
|
|
public JudgeRatingStatusResponse() {}
|
|
public JudgeRatingStatusResponse(Long judgeId, String judgeName, Boolean hasRated,
|
String ratingTime, BigDecimal totalScore) {
|
this.judgeId = judgeId;
|
this.judgeName = judgeName;
|
this.hasRated = hasRated;
|
this.ratingTime = ratingTime;
|
this.totalScore = totalScore;
|
}
|
|
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 Boolean getHasRated() {
|
return hasRated;
|
}
|
|
public void setHasRated(Boolean hasRated) {
|
this.hasRated = hasRated;
|
}
|
|
public String getRatingTime() {
|
return ratingTime;
|
}
|
|
public void setRatingTime(String ratingTime) {
|
this.ratingTime = ratingTime;
|
}
|
|
public BigDecimal getTotalScore() {
|
return totalScore;
|
}
|
|
public void setTotalScore(BigDecimal totalScore) {
|
this.totalScore = totalScore;
|
}
|
}
|