tc.java

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

JAVA
61
字号
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 + =
减小字号Ctrl + -
显示快捷键?