usersearchform.java

来自「ssh2注册查询搜索分页实例ssh2注册查询搜索分页实例」· Java 代码 · 共 52 行

JAVA
52
字号
/**
 * UserSearchForm.java created by feiling
 */
package com.feiling.web.domain;

/**
 * @author 邓飞玲
 * Oct 15, 2008
 * deng819@163.com
 */
public class UserSearchForm {
	private String userName;
	private String email;
	private String rows;
	/**
	 * @return the userName
	 */
	public String getUserName() {
		return userName;
	}
	/**
	 * @param userName the userName to set
	 */
	public void setUserName(String userName) {
		this.userName = userName;
	}
	/**
	 * @return the email
	 */
	public String getEmail() {
		return email;
	}
	/**
	 * @param email the email to set
	 */
	public void setEmail(String email) {
		this.email = email;
	}
	/**
	 * @return the rows
	 */
	public String getRows() {
		return rows;
	}
	/**
	 * @param rows the rows to set
	 */
	public void setRows(String rows) {
		this.rows = rows;
	}
}

⌨️ 快捷键说明

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