package com.rongyichuang.judge.dto.response;
|
|
import java.util.List;
|
|
public class JudgeResponse {
|
private Long id;
|
private String name;
|
private String phone;
|
private Integer gender;
|
private String description;
|
private String avatarUrl;
|
private List<TagResponse> specialties;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getPhone() {
|
return phone;
|
}
|
|
public void setPhone(String phone) {
|
this.phone = phone;
|
}
|
|
public Integer getGender() {
|
return gender;
|
}
|
|
public void setGender(Integer gender) {
|
this.gender = gender;
|
}
|
|
public String getDescription() {
|
return description;
|
}
|
|
public void setDescription(String description) {
|
this.description = description;
|
}
|
|
public String getAvatarUrl() {
|
return avatarUrl;
|
}
|
|
public void setAvatarUrl(String avatarUrl) {
|
this.avatarUrl = avatarUrl;
|
}
|
|
public List<TagResponse> getSpecialties() {
|
return specialties;
|
}
|
|
public void setSpecialties(List<TagResponse> specialties) {
|
this.specialties = specialties;
|
}
|
|
public static class TagResponse {
|
private Long id;
|
private String name;
|
private String code;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getCode() {
|
return code;
|
}
|
|
public void setCode(String code) {
|
this.code = code;
|
}
|
}
|
}
|