student.java

来自「想学习EJB的同学」· Java 代码 · 共 52 行

JAVA
52
字号
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package ejb3.day5;import java.io.Serializable;import java.util.Date;/** * * @author user */public class Student implements Serializable{    private String name;    private Date birthday;    private String sex;    public Student(){}    public Student(String name, Date birthday, String sex){        this.name = name;        this.birthday = birthday;        this.sex = sex;    }    public String getName() {        return name;    }    public void setName(String name) {        this.name = name;    }    public Date getBirthday() {        return birthday;    }    public void setBirthday(Date birthday) {        this.birthday = birthday;    }    public String getSex() {        return sex;    }    public void setSex(String sex) {        this.sex = sex;    }        }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?