| | |
| | | private String mobilePhone; |
| | | private BigDecimal studyDuration; |
| | | private BigDecimal score; |
| | | private String studentNumber; |
| | | private String attendanceStatus; |
| | | |
| | | public StuStudent() { |
| | | } |
| | | |
| | | public StuStudent(String studentId, Date createTime, Date updateTime, String creator, String createId, |
| | | boolean deleteFlag) { |
| | | boolean deleteFlag,String studentNumber) { |
| | | this.studentId = studentId; |
| | | this.createTime = createTime; |
| | | this.updateTime = updateTime; |
| | | this.creator = creator; |
| | | this.createId = createId; |
| | | this.deleteFlag = deleteFlag; |
| | | this.studentNumber=studentNumber; |
| | | } |
| | | |
| | | 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 tenantId, String status, String attendanceStatus,String studentNumber) { |
| | | this.studentId = studentId; |
| | | this.createTime = createTime; |
| | | this.updateTime = updateTime; |
| | |
| | | this.classId = classId; |
| | | this.tenantId = tenantId; |
| | | this.status = status; |
| | | this.attendanceStatus = attendanceStatus; |
| | | this.studentNumber=studentNumber; |
| | | } |
| | | |
| | | @Id |
| | |
| | | public void setStatus(String status) { |
| | | this.status = status; |
| | | } |
| | | @Column(name = "ATTENDANCE_STATUS", length = 16) |
| | | public String getAttendanceStatus() { |
| | | return this.attendanceStatus; |
| | | } |
| | | |
| | | public void setAttendanceStatus(String attendanceStatus) { |
| | | this.attendanceStatus = attendanceStatus; |
| | | } |
| | | |
| | | @Column(name = "STUDENT_NO", length = 32) |
| | | public String getStudentNo() { |
| | |
| | | public void setSubjectId(String subjectId) { |
| | | this.subjectId = subjectId; |
| | | } |
| | | |
| | | |
| | | |
| | | @Column(name = "STUDENTSUMBER", length=30) |
| | | public String getStudentNumber() { |
| | | return studentNumber; |
| | | } |
| | | |
| | | public void setStudentNumber(String studentNumber) { |
| | | this.studentNumber = studentNumber; |
| | | } |
| | | |
| | | } |