📄 salesperson.java
字号:
//$Id: Salesperson.java 7119 2005-06-12 22:03:30Z oneovthafew $package org.hibernate.test.ondelete;import java.util.HashSet;import java.util.Set;public class Salesperson extends Employee { private Set customers = new HashSet(); public Set getCustomers() { return customers; } public void setCustomers(Set customers) { this.customers = customers; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -