backend/src/main/java/com/rongyichuang/user/dto/response/UserProfile.java
@@ -18,6 +18,8 @@
    private String school;
    private String major;
    private String grade;
    private String gender;
    private String birthday;
    private List<String> roles;
    private String createdAt;
    private EmployeeInfo employee;
@@ -89,6 +91,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;
    }