📄 people.java
字号:
package javabean;
import java.util.Date;
public class People {
private int id;
private String userName;
private int age;
private Date birthDay;
private double sal;
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public People(int id, String userName, int age) {
this.id = id;
this.userName = userName;
this.age = age;
}
public People() {
}
public Date getBirthDay() {
return birthDay;
}
public void setBirthDay(Date birthDay) {
this.birthDay = birthDay;
}
public double getSal() {
return sal;
}
public void setSal(double sal) {
this.sal = sal;
}
public People(int id, String userName, int age, Date birthDay, double sal) {
this.id = id;
this.userName = userName;
this.age = age;
this.birthDay = birthDay;
this.sal = sal;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -