📄 student.java
字号:
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package warren.eaststd.jsp.stuinfo;import java.util.Date;/** * * @author Administrator */public class Student {private int stuId;private String stuName;private String address; public String getAddress() { return address; } public void setAddress(String address) { this.address = address; } public Date getBirthday() { return birthday; } public void setBirthday(Date birthday) { this.birthday = birthday; } public int getStuId() { return stuId; } public void setStuId(int stuId) { this.stuId = stuId; } public String getStuName() { return stuName; } public void setStuName(String stuName) { this.stuName = stuName; } public String getTelephone() { return telephone; } public void setTelephone(String telephone) { this.telephone = telephone; }private Date birthday;private String telephone;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -