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