|
|
package com.yanzhen.entity;
|
|
|
|
|
|
import com.yanzhen.utils.Entity;
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
|
public class DormitoryStudent extends Entity{ // 定义一个名为DormitoryStudent的类,继承自Entity类
|
|
|
|
|
|
private Integer id; // 定义一个私有变量id,用于存储学生的宿舍分配ID
|
|
|
|
|
|
private Integer dormitoryId; // 定义一个私有变量dormitoryId,用于存储宿舍ID
|
|
|
|
|
|
private Integer bedId; // 定义一个私有变量bedId,用于存储床位ID
|
|
|
|
|
|
private Integer studentId; // 定义一个私有变量studentId,用于存储学生ID
|
|
|
|
|
|
private Date checkin; // 定义一个私有变量checkin,用于存储入住日期
|
|
|
|
|
|
private Integer status; // 定义一个私有变量status,用于表示入住状态(0为待入住,1为已入住)
|
|
|
|
|
|
private Student student; // 定义一个私有变量student,用于关联Student对象
|
|
|
|
|
|
private Dormitory dormitory; // 定义一个私有变量dormitory,用于关联Dormitory对象
|
|
|
|
|
|
public Integer getId() { // 定义一个公共方法getId,用于获取id的值
|
|
|
return id;
|
|
|
}
|
|
|
public void setId(Integer id) { // 定义一个公共方法setId,用于设置id的值
|
|
|
this.id = id;
|
|
|
}
|
|
|
public Integer getDormitoryId() { // 定义一个公共方法getDormitoryId,用于获取dormitoryId的值
|
|
|
return dormitoryId;
|
|
|
}
|
|
|
public void setDormitoryId(Integer dormitoryId) { // 定义一个公共方法setDormitoryId,用于设置dormitoryId的值
|
|
|
this.dormitoryId = dormitoryId;
|
|
|
}
|
|
|
public Integer getBedId() { // 定义一个公共方法getBedId,用于获取bedId的值
|
|
|
return bedId;
|
|
|
}
|
|
|
public void setBedId(Integer bedId) { // 定义一个公共方法setBedId,用于设置bedId的值
|
|
|
this.bedId = bedId;
|
|
|
}
|
|
|
public Integer getStudentId() { // 定义一个公共方法getStudentId,用于获取studentId的值
|
|
|
return studentId;
|
|
|
}
|
|
|
public void setStudentId(Integer studentId) { // 定义一个公共方法setStudentId,用于设置studentId的值
|
|
|
this.studentId = studentId;
|
|
|
}
|
|
|
public Date getCheckin() { // 定义一个公共方法getCheckin,用于获取checkin的值
|
|
|
return checkin;
|
|
|
}
|
|
|
public void setCheckin(Date checkin) { // 定义一个公共方法setCheckin,用于设置checkin的值
|
|
|
this.checkin = checkin;
|
|
|
}
|
|
|
public Integer getStatus() { // 定义一个公共方法getStatus,用于获取status的值
|
|
|
return status;
|
|
|
}
|
|
|
public void setStatus(Integer status) { // 定义一个公共方法setStatus,用于设置status的值
|
|
|
this.status = status;
|
|
|
}
|
|
|
|
|
|
public Student getStudent() { // 定义一个公共方法getStudent,用于获取student对象的值
|
|
|
return student;
|
|
|
}
|
|
|
|
|
|
public void setStudent(Student student) { // 定义一个公共方法setStudent,用于设置student对象的值
|
|
|
this.student = student;
|
|
|
}
|
|
|
|
|
|
public Dormitory getDormitory() { // 定义一个公共方法getDormitory,用于获取dormitory对象的值
|
|
|
return dormitory;
|
|
|
}
|
|
|
|
|
|
public void setDormitory(Dormitory dormitory) { // 定义一个公共方法setDormitory,用于设置dormitory对象的值
|
|
|
this.dormitory = dormitory;
|
|
|
}
|
|
|
} |