student.java
来自「学生管理系统」· Java 代码 · 共 61 行
JAVA
61 行
/* * 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 + =
减小字号Ctrl + -
显示快捷键?