salariedempl.java

来自「Hibernate中的映射例子」· Java 代码 · 共 29 行

JAVA
29
字号
package test.general.pojo;

public class SalariedEmpl extends Empl {
	float salary;

	public SalariedEmpl(float salary) {
		super();
		this.salary = salary;
	}

	public SalariedEmpl() {
		super();
		// TODO Auto-generated constructor stub
	}

	public SalariedEmpl(Integer id) {
		super(id);
		// TODO Auto-generated constructor stub
	}

	public float getSalary() {
		return salary;
	}

	public void setSalary(float salary) {
		this.salary = salary;
	}
}

⌨️ 快捷键说明

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