lrj
5 天以前 4fa9591629721797386fc11836e3a9deb69cd58c
backend/src/main/java/com/rongyichuang/judge/dto/response/JudgeResponse.java
@@ -8,8 +8,12 @@
    private String phone;
    private Integer gender;
    private String description;
    private String title;
    private String company;
    private String introduction;
    private String avatarUrl;
    private List<TagResponse> specialties;
    private List<TagResponse> tags;
    public Long getId() {
        return id;
@@ -67,6 +71,38 @@
        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<TagResponse> getTags() {
        return tags;
    }
    public void setTags(List<TagResponse> tags) {
        this.tags = tags;
    }
    public static class TagResponse {
        private Long id;
        private String name;