userform.java

来自「struts+hibernate做的一个用户注册管理系统」· Java 代码 · 共 38 行

JAVA
38
字号
package com.user.struts.form;

import org.apache.struts.action.ActionForm;

public class UserForm extends ActionForm {
	private String userId; // 用户登陆名称

	private String userPwd; // 用户登陆密码

	/**
	 * @return the userId
	 */
	public String getUserId() {
		return userId;
	}

	/**
	 * @param userId the userId to set
	 */
	public void setUserId(String userId) {
		this.userId = userId;
	}

	/**
	 * @return the userPwd
	 */
	public String getUserPwd() {
		return userPwd;
	}

	/**
	 * @param userPwd the userPwd to set
	 */
	public void setUserPwd(String userPwd) {
		this.userPwd = userPwd;
	}

}

⌨️ 快捷键说明

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