| | |
| | | private BigDecimal score; |
| | | private String studentNumber; |
| | | private String attendanceStatus; |
| | | private String graduationText; |
| | | |
| | | 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 studentNumber) { |
| | | String tenantId, String status, String attendanceStatus, String graduationText,String studentNumber) { |
| | | this.studentId = studentId; |
| | | this.createTime = createTime; |
| | | this.updateTime = updateTime; |
| | |
| | | this.tenantId = tenantId; |
| | | this.status = status; |
| | | this.attendanceStatus = attendanceStatus; |
| | | this.graduationText = graduationText; |
| | | this.studentNumber=studentNumber; |
| | | } |
| | | |
| | |
| | | this.attendanceStatus = attendanceStatus; |
| | | } |
| | | |
| | | @Column(name = "GRADUATION_TEXT", length = 200) |
| | | public String getGraduationText() { |
| | | return this.graduationText; |
| | | } |
| | | |
| | | public void setGraduationText(String graduationText) { |
| | | this.graduationText = graduationText; |
| | | } |
| | | |
| | | @Column(name = "STUDENT_NO", length = 32) |
| | | public String getStudentNo() { |
| | | return studentNo; |