| | |
| | | private static final long serialVersionUID = 7504161189427721559L; |
| | | |
| | | /* |
| | | * 状态: 已报名 |
| | | * 状态: 已报名 |
| | | */ |
| | | public static final String STATUS_REGISTER = "register"; |
| | | public static final String STATUS_ACTIVE = "active"; |
| | |
| | | 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 attendanceStatus) { |
| | | String tenantId, String status, String attendanceStatus,String studentNumber) { |
| | | this.studentId = studentId; |
| | | this.createTime = createTime; |
| | | this.updateTime = updateTime; |
| | |
| | | this.tenantId = tenantId; |
| | | this.status = status; |
| | | this.attendanceStatus = attendanceStatus; |
| | | this.studentNumber=studentNumber; |
| | | } |
| | | |
| | | @Id |
| | |
| | | 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; |
| | | } |
| | | |
| | | } |