📄 userdtotwo.java
字号:
/**
*******************************************************************************
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -