2025-12-02 17:04:38 +08:00
|
|
|
package com.campus.entity;
|
|
|
|
|
|
|
|
|
|
public class Student {
|
|
|
|
|
private Integer id;
|
|
|
|
|
private String name;
|
|
|
|
|
private String studentId;
|
|
|
|
|
private String class_;
|
|
|
|
|
private String major;
|
2025-12-05 17:38:20 +08:00
|
|
|
private Integer userId;
|
2025-12-02 17:04:38 +08:00
|
|
|
|
|
|
|
|
public Integer getId() {
|
|
|
|
|
return id;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setId(Integer id) {
|
|
|
|
|
this.id = id;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getName() {
|
|
|
|
|
return name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setName(String name) {
|
|
|
|
|
this.name = name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getClass_() {
|
|
|
|
|
return class_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setClass_(String class_) {
|
|
|
|
|
this.class_ = class_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getStudentId() {
|
|
|
|
|
return studentId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setStudentId(String studentId) {
|
|
|
|
|
this.studentId = studentId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getMajor() {
|
|
|
|
|
return major;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setMajor(String major) {
|
|
|
|
|
this.major = major;
|
|
|
|
|
}
|
|
|
|
|
}
|