lrj
19 小时以前 f04f35b562760afbac0c477357e2a29f77aec3b9
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
package com.rongyichuang.player.dto.response;
 
/**
 * 当前评委信息响应
 */
public class CurrentJudgeInfoResponse {
    
    private Long judgeId;
    private String judgeName;
    private String title;
    private String company;
 
    public CurrentJudgeInfoResponse() {}
 
    public CurrentJudgeInfoResponse(Long judgeId, String judgeName, String title, String company) {
        this.judgeId = judgeId;
        this.judgeName = judgeName;
        this.title = title;
        this.company = company;
    }
 
    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 String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getCompany() {
        return company;
    }
 
    public void setCompany(String company) {
        this.company = company;
    }
}