⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 score.java

📁 are are are are are are are are are are are are
💻 JAVA
字号:
/* * Score.java * * Created on 2006年5月12日, 下午10:54 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */package enova.pojo;/** * * @author vlinux */public class Score implements java.io.Serializable {        private Course course;    private Student student;    private Integer value;    private java.sql.Date date;            /** Creates a new instance of Score */    public Score() {}        public Score( Integer studentId, Integer courseId, java.sql.Date date ){        this( new Student(studentId), new Course(courseId), date );    }        public Score( Student student, Course course, java.sql.Date date ){        this.setCourse(course);        this.setStudent(student);        this.setDate(date);    }    public Course getCourse() {        return course;    }    public void setCourse(Course course) {        this.course = course;    }    public Student getStudent() {        return student;    }    public void setStudent(Student student) {        this.student = student;    }    public Integer getValue() {        return value;    }    public void setValue(Integer value) {        this.value = value;    }    public java.sql.Date getDate() {        return date;    }    public void setDate(java.sql.Date date) {        this.date = date;    }    }

⌨️ 快捷键说明

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