teacher.java

来自「这是一个学校老师和学生的管理系统,程序比较简单,但是几乎所有功能都可以实现,如果」· Java 代码 · 共 107 行

JAVA
107
字号
/**
 *******************************************************************************
 * Teacher.java
 *
 * (c) Copyright 2008 Hewlett-Packard Development Company, L.P.
 *
 *<Program Content>
 *  System Name : Students Management System
 *<Summarize>
 *  The file includes a class and the class includes the teacher information.
 *<Update Record>
 *  2009-4-29    1.00    zhangliy
 *******************************************************************************
 */
package com.hp.eds.zhangliyuan.stuMan.entity;

/**
 * The class includes the teacher information.
 * 
 * @author zhangliy
 * @version 1.0
 */
public class Teacher {
	private String id;

	private String name;

	private String title;

	private String password;

	/**
	 * id of get
	 *
	 * @return id
	 */
	public String getId() {
		return id;
	}

	/**
	 * id of set
	 *
	 * @param id set {bare_field_name}
	 */
	public void setId(String id) {
		this.id = id;
	}

	/**
	 * name of get
	 *
	 * @return name
	 */
	public String getName() {
		return name;
	}

	/**
	 * name of set
	 *
	 * @param name set {bare_field_name}
	 */
	public void setName(String name) {
		this.name = name;
	}

	/**
	 * password of get
	 *
	 * @return password
	 */
	public String getPassword() {
		return password;
	}

	/**
	 * password of set
	 *
	 * @param password set {bare_field_name}
	 */
	public void setPassword(String password) {
		this.password = password;
	}

	/**
	 * title of get
	 *
	 * @return title
	 */
	public String getTitle() {
		return title;
	}

	/**
	 * title of set
	 *
	 * @param title set {bare_field_name}
	 */
	public void setTitle(String title) {
		this.title = title;
	}



}

⌨️ 快捷键说明

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