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 title; private String company; private String introduction; private String avatarUrl; private List specialties; private List tags; 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 getSpecialties() { return specialties; } public void setSpecialties(List specialties) { this.specialties = specialties; } 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; } public String getIntroduction() { return introduction; } public void setIntroduction(String introduction) { this.introduction = introduction; } public List getTags() { return tags; } public void setTags(List tags) { this.tags = tags; } 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; } } }