package com.rongyichuang.player.dto.response;
|
|
/**
|
* 阶段评委评分明细响应
|
*/
|
public class StageJudgeRatingItemResponse {
|
|
private Long judgeId;
|
private String judgeName;
|
private Double totalScore;
|
private String feedback;
|
private String ratingTime;
|
|
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 Double getTotalScore() {
|
return totalScore;
|
}
|
|
public void setTotalScore(Double totalScore) {
|
this.totalScore = totalScore;
|
}
|
|
public String getFeedback() {
|
return feedback;
|
}
|
|
public void setFeedback(String feedback) {
|
this.feedback = feedback;
|
}
|
|
public String getRatingTime() {
|
return ratingTime;
|
}
|
|
public void setRatingTime(String ratingTime) {
|
this.ratingTime = ratingTime;
|
}
|
}
|