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

📄 teachert.java

📁 这是一个班级 教师 学生 课程管理的软件实现对学生教师课程的添加修改删除查询
💻 JAVA
字号:
package com.vsked.bean;

import java.sql.Date;

//教师对象
public class teachert {
	private int tid;//教师编号
	private String tname;//名
	private String tsex;//性别
	private int tage;//年龄
	private Date tinwork;//入职日期
	private String tsfid;//身份证
	private String taddre;//住址
	private String tphone;//电话
	private String tstatus;//状态
	
	public String getTaddre() {
		return taddre;
	}
	public void setTaddre(String taddre) {
		this.taddre = taddre;
	}
	public int getTage() {
		return tage;
	}
	public void setTage(int tage) {
		this.tage = tage;
	}
	public int getTid() {
		return tid;
	}
	public void setTid(int tid) {
		this.tid = tid;
	}
	public Date getTinwork() {
		return tinwork;
	}
	public void setTinwork(Date tinwork) {
		this.tinwork = tinwork;
	}
	public String getTname() {
		return tname;
	}
	public void setTname(String tname) {
		this.tname = tname;
	}
	public String getTphone() {
		return tphone;
	}
	public void setTphone(String tphone) {
		this.tphone = tphone;
	}
	public String getTsex() {
		return tsex;
	}
	public void setTsex(String tsex) {
		this.tsex = tsex;
	}
	public String getTsfid() {
		return tsfid;
	}
	public void setTsfid(String tsfid) {
		this.tsfid = tsfid;
	}
	public String getTstatus() {
		return tstatus;
	}
	public void setTstatus(String tstatus) {
		this.tstatus = tstatus;
	}
	public teachert() {		
	}
	
	public teachert(int tid,String tname,String tsex,int tage,Date tinwork,String tsfid,String taddre,String tphone,String tstatus) {
		this.tid=tid;
		this.tname=tname;
		this.tsex=tsex;
		this.tage=tage;
		this.tinwork=tinwork;
		this.tsfid=tsfid;
		this.taddre=taddre;
		this.tphone=tphone;
		this.tstatus=tstatus;
		
	}
	
	
	

}

⌨️ 快捷键说明

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