sc.java

来自「基于ssh框架」· Java 代码 · 共 71 行

JAVA
71
字号
package com.zzu.dao.entity;

/**
 * Sc entity.
 * 
 * @author MyEclipse Persistence Tools
 */

public class Sc implements java.io.Serializable {

	// Fields

	private Integer scId;
	private Student student;
	private Course course;
	private Integer grade;

	// Constructors

	/** default constructor */
	public Sc() {
	}

	/** minimal constructor */
	public Sc(Integer scId) {
		this.scId = scId;
	}

	/** full constructor */
	public Sc(Integer scId, Student student, Course course, Integer grade) {
		this.scId = scId;
		this.student = student;
		this.course = course;
		this.grade = grade;
	}

	// Property accessors

	public Integer getScId() {
		return this.scId;
	}

	public void setScId(Integer scId) {
		this.scId = scId;
	}

	public Student getStudent() {
		return this.student;
	}

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

	public Course getCourse() {
		return this.course;
	}

	public void setCourse(Course course) {
		this.course = course;
	}

	public Integer getGrade() {
		return this.grade;
	}

	public void setGrade(Integer grade) {
		this.grade = grade;
	}

}

⌨️ 快捷键说明

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