📄 employee.java
字号:
/**
*
*/
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -