📄 history.java
字号:
package com.emis.model.library.hibernate;
import com.emis.model.hr.hibernate.Employee;
/**
* History generated by MyEclipse - Hibernate Tools
*/
public class History implements java.io.Serializable {
// Fields
private Integer id;
private Document document;
private Employee employee;
// Constructors
/** default constructor */
public History() {
}
/** full constructor */
public History(Integer id, Document document, Employee employee) {
this.id = id;
this.document = document;
this.employee = employee;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public Document getDocument() {
return this.document;
}
public void setDocument(Document document) {
this.document = document;
}
public Employee getEmployee() {
return this.employee;
}
public void setEmployee(Employee employee) {
this.employee = employee;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -