📄 studentexamines.java
字号:
package com.zbaccp.ea.entity;
import java.util.Date;
/**
* Studentexamines entity.
*
* @author MyEclipse Persistence Tools
*/
public class Studentexamines implements java.io.Serializable {
// Fields
private String id;
private Employees employees;
private Date date;
private String courseId;
private String remark;
// Constructors
/** default constructor */
public Studentexamines() {
}
/** minimal constructor */
public Studentexamines(String id, Date date) {
this.id = id;
this.date = date;
}
/** full constructor */
public Studentexamines(String id, Employees employees, Date date,
String courseId, String remark) {
this.id = id;
this.employees = employees;
this.date = date;
this.courseId = courseId;
this.remark = remark;
}
// Property accessors
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public Employees getEmployees() {
return this.employees;
}
public void setEmployees(Employees employees) {
this.employees = employees;
}
public Date getDate() {
return this.date;
}
public void setDate(Date date) {
this.date = date;
}
public String getCourseId() {
return this.courseId;
}
public void setCourseId(String courseId) {
this.courseId = courseId;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -