📄 sc.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -