📄 userregisterform.java
字号:
package com.user.struts.form;
import java.sql.Date;
import org.apache.struts.action.ActionForm;
public class UserRegisterForm extends ActionForm {
private String userId; // 用户登陆名称
private String userPwd; // 用户登陆密码
private String userrePwd;// 用户登陆密码确认
private String userName; // 用户真实姓名
private String userSex; // 用户性别
private Date userBirthday; // 用户生日
private String userIdentity; // 用户身份证
private String userPhone; // 用户电话
private String userFax; // 用户传真
private String userMail; // 用户邮箱
private String userAddress; // 用户住址
private int userPost; // 用户住址邮编
private String userDesc; // 用户介绍
private int userType; // 用户类型 1为普通用户.2为管理员
public String getUserAddress() {
return userAddress;
}
public void setUserAddress(String userAddress) {
this.userAddress = userAddress;
}
public Date getUserBirthday() {
return userBirthday;
}
public void setUserBirthday(Date userBirthday) {
this.userBirthday = userBirthday;
}
public String getUserDesc() {
return userDesc;
}
public void setUserDesc(String userDesc) {
this.userDesc = userDesc;
}
public String getUserFax() {
return userFax;
}
public void setUserFax(String userFax) {
this.userFax = userFax;
}
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getUserIdentity() {
return userIdentity;
}
public void setUserIdentity(String userIdentity) {
this.userIdentity = userIdentity;
}
public String getUserMail() {
return userMail;
}
public void setUserMail(String userMail) {
this.userMail = userMail;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getUserPhone() {
return userPhone;
}
public void setUserPhone(String userPhone) {
this.userPhone = userPhone;
}
public int getUserPost() {
return userPost;
}
public void setUserPost(int userPost) {
this.userPost = userPost;
}
public String getUserPwd() {
return userPwd;
}
public void setUserPwd(String userPwd) {
this.userPwd = userPwd;
}
public String getUserSex() {
return userSex;
}
public void setUserSex(String userSex) {
this.userSex = userSex;
}
public int getUserType() {
return userType;
}
public void setUserType(int userType) {
this.userType = userType;
}
/**
* @return the userrePwd
*/
public String getUserrePwd() {
return userrePwd;
}
/**
* @param userrePwd the userrePwd to set
*/
public void setUserrePwd(String userrePwd) {
this.userrePwd = userrePwd;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -