Codex Assistant
2 天以前 afeeed281e60466b576fbe74d339634cc5d07b82
backend/src/main/java/com/rongyichuang/user/dto/response/UserProfile.java
@@ -18,7 +18,10 @@
    private String school;
    private String major;
    private String grade;
    private String gender;
    private String birthday;
    private List<String> roles;
    private String userType;
    private String createdAt;
    private EmployeeInfo employee;
    private JudgeInfo judge;
@@ -89,6 +92,22 @@
        this.grade = grade;
    }
    public String getGender() {
        return gender;
    }
    public void setGender(String gender) {
        this.gender = gender;
    }
    public String getBirthday() {
        return birthday;
    }
    public void setBirthday(String birthday) {
        this.birthday = birthday;
    }
    public List<String> getRoles() {
        return roles;
    }
@@ -97,6 +116,14 @@
        this.roles = roles;
    }
    public String getUserType() {
        return userType;
    }
    public void setUserType(String userType) {
        this.userType = userType;
    }
    public String getCreatedAt() {
        return createdAt;
    }