user.java
来自「各种数据保存:字符型」· Java 代码 · 共 56 行
JAVA
56 行
package cn.itcast.domain;
import java.util.Date;
public class User {
private long id;
private String name;
private long age;
private Date birthDay;
private long account;
public long getAge() {
return age;
}
public void setAge(long age) {
this.age = age;
}
public Date getBirthDay() {
return birthDay;
}
public void setBirthDay(Date birthDay) {
this.birthDay = birthDay;
}
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public long getAccount() {
return account;
}
public void setAccount(long account) {
this.account = account;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?