?? marital.java
字號(hào):
package com.emis.model.hr.hibernate;
import java.util.HashSet;
import java.util.Set;
/**
* Marital generated by MyEclipse - Hibernate Tools
*/
public class Marital implements java.io.Serializable {
// Fields
private Short id;
private String name;
private String remarks;
private Set employees = new HashSet(0);
// Constructors
/** default constructor */
public Marital() {
}
/** minimal constructor */
public Marital(Short id, String name, String remarks) {
this.id = id;
this.name = name;
this.remarks = remarks;
}
/** full constructor */
public Marital(Short id, String name, String remarks, Set employees) {
this.id = id;
this.name = name;
this.remarks = remarks;
this.employees = employees;
}
// Property accessors
public Short getId() {
return this.id;
}
public void setId(Short id) {
this.id = id;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getRemarks() {
return this.remarks;
}
public void setRemarks(String remarks) {
this.remarks = remarks;
}
public Set getEmployees() {
return this.employees;
}
public void setEmployees(Set employees) {
this.employees = employees;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -