📄 tc.java
字号:
package com.zzu.dao.entity;
/**
* Tc entity.
*
* @author MyEclipse Persistence Tools
*/
public class Tc implements java.io.Serializable {
// Fields
private Integer tcId;
private Course course;
private Teacher teacher;
// Constructors
/** default constructor */
public Tc() {
}
/** minimal constructor */
public Tc(Integer tcId) {
this.tcId = tcId;
}
/** full constructor */
public Tc(Integer tcId, Course course, Teacher teacher) {
this.tcId = tcId;
this.course = course;
this.teacher = teacher;
}
// Property accessors
public Integer getTcId() {
return this.tcId;
}
public void setTcId(Integer tcId) {
this.tcId = tcId;
}
public Course getCourse() {
return this.course;
}
public void setCourse(Course course) {
this.course = course;
}
public Teacher getTeacher() {
return this.teacher;
}
public void setTeacher(Teacher teacher) {
this.teacher = teacher;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -