userdtotwo.java

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

JAVA
159
字号
/**
 *******************************************************************************
 * UserDtoTwo.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 update information that
 *  user input.
 *<Update Record>
 *  2009-4-21    1.00    zhangliy
 *******************************************************************************
 */
package com.hp.eds.zhangliyuan.stuMan.dto;

import com.hp.eds.zhangliyuan.stuMan.entity.UserInfo;

/**
 * The class includes update information that user input.
 * 
 * @author zhangliy
 * @version 1.0
 */
public class UserDtoTwo {
	private String password;

	private String confirmPas;

	private String telephone;

	private String email;

	private UserInfo user;

	/**
	 * Constructor
	 * 
	 */
	public UserDtoTwo() {
		super();
	}

	/**
	 * Constructor
	 * 
	 * @param password
	 * @param confirmPas
	 * @param telephone
	 * @param email
	 * @param user
	 */
	public UserDtoTwo(String password, String confirmPas, String telephone,
			String email, UserInfo user) {
		this.password = password;
		this.confirmPas = confirmPas;
		this.telephone = telephone;
		this.email = email;
		this.user = user;
	}

	/**
	 * confirmPas of get
	 * 
	 * @return confirmPas
	 */
	public String getConfirmPas() {
		return confirmPas;
	}

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

	/**
	 * email of get
	 * 
	 * @return email
	 */
	public String getEmail() {
		return email;
	}

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

	/**
	 * 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;
	}

	/**
	 * telephone of get
	 * 
	 * @return telephone
	 */
	public String getTelephone() {
		return telephone;
	}

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

	/**
	 * user of get
	 * 
	 * @return user
	 */
	public UserInfo getUser() {
		return user;
	}

	/**
	 * user of set
	 * 
	 * @param user
	 *            set {bare_field_name}
	 */
	public void setUser(UserInfo user) {
		this.user = user;
	}

}

⌨️ 快捷键说明

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