You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
1.8 KiB
87 lines
1.8 KiB
|
1 week ago
|
package com.student.bean;
|
||
|
|
|
||
|
|
import java.io.Serializable;
|
||
|
|
import java.util.Date;
|
||
|
|
|
||
|
|
public class Attendance implements Serializable {
|
||
|
|
|
||
|
|
public static final int STATUS_PRESENT = 1;
|
||
|
|
public static final int STATUS_LATE = 2;
|
||
|
|
public static final int STATUS_ABSENT = 3;
|
||
|
|
|
||
|
|
private static final long serialVersionUID = 1L;
|
||
|
|
|
||
|
|
private Integer id;
|
||
|
|
private Integer studentId;
|
||
|
|
private Integer courseId;
|
||
|
|
private Date attDate;
|
||
|
|
private Integer status;
|
||
|
|
private String remark;
|
||
|
|
private String studentName;
|
||
|
|
private String courseName;
|
||
|
|
|
||
|
|
public Integer getId() {
|
||
|
|
return id;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setId(Integer id) {
|
||
|
|
this.id = id;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Integer getStudentId() {
|
||
|
|
return studentId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setStudentId(Integer studentId) {
|
||
|
|
this.studentId = studentId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Integer getCourseId() {
|
||
|
|
return courseId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCourseId(Integer courseId) {
|
||
|
|
this.courseId = courseId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Date getAttDate() {
|
||
|
|
return attDate;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setAttDate(Date attDate) {
|
||
|
|
this.attDate = attDate;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Integer getStatus() {
|
||
|
|
return status;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setStatus(Integer status) {
|
||
|
|
this.status = status;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getRemark() {
|
||
|
|
return remark;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setRemark(String remark) {
|
||
|
|
this.remark = remark;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getStudentName() {
|
||
|
|
return studentName;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setStudentName(String studentName) {
|
||
|
|
this.studentName = studentName;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getCourseName() {
|
||
|
|
return courseName;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCourseName(String courseName) {
|
||
|
|
this.courseName = courseName;
|
||
|
|
}
|
||
|
|
}
|