⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 employee.java

📁 介绍了hibernate的入门有一些基本常用的事例
💻 JAVA
字号:
// $Id: Employee.java,v 1.1 2005/02/24 20:08:04 steveebersole Exp $package org.hibernate.test.subclassfilter;import java.util.Set;import java.util.HashSet;/** * Implementation of Employee. * * @author Steve Ebersole */public class Employee extends Person {    private String title;	private String department;	private Employee manager;	private Set minions = new HashSet();	public Employee() {	}	public Employee(String name) {		super( name );	}	public String getTitle() {		return title;	}	public void setTitle(String title) {		this.title = title;	}	public String getDepartment() {		return department;	}	public void setDepartment(String department) {		this.department = department;	}	public Employee getManager() {		return manager;	}	public void setManager(Employee manager) {		this.manager = manager;	}	public Set getMinions() {		return minions;	}	public void setMinions(Set minions) {		this.minions = minions;	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -