⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 teacher.java

📁 基于ssh框架
💻 JAVA
字号:
package com.zzu.dao.entity;

import java.util.HashSet;
import java.util.Set;

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

public class Teacher implements java.io.Serializable {

	// Fields

	private String tno;
	private String tname;
	private String tpwd;
	private Set tcs = new HashSet(0);

	// Constructors

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

	/** minimal constructor */
	public Teacher(String tno) {
		this.tno = tno;
	}

	/** full constructor */
	public Teacher(String tno, String tname, String tpwd, Set tcs) {
		this.tno = tno;
		this.tname = tname;
		this.tpwd = tpwd;
		this.tcs = tcs;
	}

	// Property accessors

	public String getTno() {
		return this.tno;
	}

	public void setTno(String tno) {
		this.tno = tno;
	}

	public String getTname() {
		return this.tname;
	}

	public void setTname(String tname) {
		this.tname = tname;
	}

	public String getTpwd() {
		return this.tpwd;
	}

	public void setTpwd(String tpwd) {
		this.tpwd = tpwd;
	}

	public Set getTcs() {
		return this.tcs;
	}

	public void setTcs(Set tcs) {
		this.tcs = tcs;
	}

}

⌨️ 快捷键说明

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