| | |
| | | private static final long serialVersionUID = 7504161189427721559L; |
| | | |
| | | /* |
| | | * 状态: 已报名 |
| | | * 状态: 已报名,未激活,已毕业 |
| | | */ |
| | | public static final String STATUS_REGISTER = "register"; |
| | | public static final String STATUS_ACTIVE = "active"; |
| | |
| | | private String studentNumber; |
| | | private String attendanceStatus; |
| | | private String graduationText; |
| | | private String comment; |
| | | |
| | | public StuStudent() { |
| | | } |
| | |
| | | |
| | | public StuStudent(String studentId, Date createTime, Date updateTime, String creator, String createId, |
| | | String updator, String updateId, boolean deleteFlag, String userId, String name, String classId, |
| | | String tenantId, String status, String attendanceStatus, String graduationText,String studentNumber) { |
| | | String tenantId, String status, String attendanceStatus, String graduationText,String comment,String studentNumber) { |
| | | this.studentId = studentId; |
| | | this.createTime = createTime; |
| | | this.updateTime = updateTime; |
| | |
| | | this.status = status; |
| | | this.attendanceStatus = attendanceStatus; |
| | | this.graduationText = graduationText; |
| | | this.comment = comment; |
| | | this.studentNumber=studentNumber; |
| | | } |
| | | |
| | |
| | | this.graduationText = graduationText; |
| | | } |
| | | |
| | | @Column(name = "COMMENT", length = 200) |
| | | public String getComment() { |
| | | return this.comment; |
| | | } |
| | | public void setComment(String comment) { |
| | | this.comment = comment; |
| | | } |
| | | |
| | | @Column(name = "STUDENT_NO", length = 32) |
| | | public String getStudentNo() { |
| | | return studentNo; |