| | |
| | | private BigDecimal totalScore; |
| | | private Integer status; |
| | | private String remark; |
| | | private String ratedAt; |
| | | private List<CurrentJudgeRatingItemResponse> items; |
| | | |
| | | public CurrentJudgeRatingResponse() {} |
| | |
| | | this.remark = remark; |
| | | } |
| | | |
| | | public String getRatedAt() { |
| | | return ratedAt; |
| | | } |
| | | |
| | | public void setRatedAt(String ratedAt) { |
| | | this.ratedAt = ratedAt; |
| | | } |
| | | |
| | | public List<CurrentJudgeRatingItemResponse> getItems() { |
| | | return items; |
| | | } |
| | |
| | | private String ratingItemName; |
| | | private BigDecimal score; |
| | | private BigDecimal weightedScore; |
| | | private BigDecimal maxScore; |
| | | |
| | | public CurrentJudgeRatingItemResponse() {} |
| | | |
| | | public CurrentJudgeRatingItemResponse(Long ratingItemId, String ratingItemName, |
| | | BigDecimal score, BigDecimal weightedScore) { |
| | | BigDecimal score, BigDecimal weightedScore, |
| | | BigDecimal maxScore) { |
| | | this.ratingItemId = ratingItemId; |
| | | this.ratingItemName = ratingItemName; |
| | | this.score = score; |
| | | this.weightedScore = weightedScore; |
| | | this.maxScore = maxScore; |
| | | } |
| | | |
| | | public Long getRatingItemId() { |
| | |
| | | public void setWeightedScore(BigDecimal weightedScore) { |
| | | this.weightedScore = weightedScore; |
| | | } |
| | | |
| | | public BigDecimal getMaxScore() { |
| | | return maxScore; |
| | | } |
| | | |
| | | public void setMaxScore(BigDecimal maxScore) { |
| | | this.maxScore = maxScore; |
| | | } |
| | | } |
| | | } |
| | | } |