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; } }