lrj
4 天以前 4fa9591629721797386fc11836e3a9deb69cd58c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
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;
    }
}