score.java

来自「这是一个员工管理系统」· Java 代码 · 共 57 行

JAVA
57
字号
package com.orilore.ssms.entity;

/**
 * <p>Title: </p>
 *
 * <p>Description: </p>
 *
 * <p>Copyright: Copyright (c) 2009</p>
 *
 * <p>Company: </p>
 *
 * @author not attributable
 * @version 1.0
 */
public class Score {
    private int id;
    private Student student;
    private Cource cource;
    private int score;
    public Score() {
    }

    public void setId(int id) {
        this.id = id;
    }

    public void setCource(Cource cource) {
        this.cource = cource;
    }

    public void setScore(int score) {
        this.score = score;
    }

    public void setStudent(Student student) {
        this.student = student;
    }

    public Cource getCource() {
        return cource;
    }

    public int getId() {
        return id;
    }

    public int getScore() {
        return score;
    }

    public Student getStudent() {
        return student;
    }


}

⌨️ 快捷键说明

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