📄 department.java
字号:
// $Id: Department.java 4448 2004-08-28 02:29:05Z steveebersole $package org.hibernate.test.filter;import java.util.Set;import java.util.HashSet;/** * Implementation of Department. * * @author Steve */public class Department { private Long id; private String name; private Set salespersons = new HashSet(); public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Set getSalespersons() { return salespersons; } public void setSalespersons(Set salespersons) { this.salespersons = salespersons; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -