salesperson.java

来自「hibernate-distribution-3.3.1.GA-dist.zip」· Java 代码 · 共 19 行

JAVA
19
字号
//$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 + =
减小字号Ctrl + -
显示快捷键?