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.
ssgl/zsq/DormitoryStudent.java

77 lines
3.0 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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;
}
}