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

📄 employee.java

📁 hibernate-distribution-3.3.1.GA-dist.zip源码
💻 JAVA
字号:
//$Id: Employee.java 4373 2004-08-18 09:18:34Z oneovthafew $package org.hibernate.test.discriminator;import java.math.BigDecimal;/** * @author Gavin King */public class Employee extends Person {	private String title;	private BigDecimal salary;	private Employee manager;	/**	 * @return Returns the title.	 */	public String getTitle() {		return title;	}	/**	 * @param title The title to set.	 */	public void setTitle(String title) {		this.title = title;	}	/**	 * @return Returns the manager.	 */	public Employee getManager() {		return manager;	}	/**	 * @param manager The manager to set.	 */	public void setManager(Employee manager) {		this.manager = manager;	}	/**	 * @return Returns the salary.	 */	public BigDecimal getSalary() {		return salary;	}	/**	 * @param salary The salary to set.	 */	public void setSalary(BigDecimal salary) {		this.salary = salary;	}}

⌨️ 快捷键说明

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