| | |
| | | private String mobilePhone; |
| | | private BigDecimal studyDuration; |
| | | private BigDecimal score; |
| | | private String attendanceStatus; |
| | | |
| | | 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 tenantId, String status, String attendanceStatus) { |
| | | this.studentId = studentId; |
| | | this.createTime = createTime; |
| | | this.updateTime = updateTime; |
| | |
| | | this.classId = classId; |
| | | this.tenantId = tenantId; |
| | | this.status = status; |
| | | this.attendanceStatus = attendanceStatus; |
| | | } |
| | | |
| | | @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() { |