employee.java

来自「大型数据库课程设计源码」· Java 代码 · 共 55 行

JAVA
55
字号
/**
 * 
 */
package com.vbank.beans;

/**
 * @author lizhiwei
 *
 */
public class Employee extends Customer{
	private int age;
	private String employeedDate;
	private float salary;
	public Employee() {
		
	}
	/**
	 * @return age
	 */
	public int getAge() {
		return age;
	}
	/**
	 * @param age 要设置的 age
	 */
	public void setAge(int age) {
		this.age = age;
	}
	/**
	 * @return employeedDate
	 */
	public String getEmployeedDate() {
		return employeedDate;
	}
	/**
	 * @param employeedDate 要设置的 employeedDate
	 */
	public void setEmployeedDate(String employeedDate) {
		this.employeedDate = employeedDate;
	}
	/**
	 * @return salary
	 */
	public float getSalary() {
		return salary;
	}
	/**
	 * @param salary 要设置的 salary
	 */
	public void setSalary(float salary) {
		this.salary = salary;
	}
	
}

⌨️ 快捷键说明

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