| | |
| | | |
| | | private Long judgeId; |
| | | private String judgeName; |
| | | private Boolean hasRated; |
| | | private String ratingTime; |
| | | private BigDecimal totalScore; |
| | | private Integer status; |
| | | private Boolean isCurrentJudge; |
| | | |
| | | public JudgeRatingStatusResponse() {} |
| | | |
| | | public JudgeRatingStatusResponse(Long judgeId, String judgeName, BigDecimal totalScore, |
| | | Integer status, Boolean isCurrentJudge) { |
| | | 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; |
| | | this.status = status; |
| | | this.isCurrentJudge = isCurrentJudge; |
| | | } |
| | | |
| | | public Long getJudgeId() { |
| | |
| | | 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; |
| | | } |
| | | |
| | | 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; |
| | | } |
| | | } |