📄 friendfindwhereaddressequalsform.java
字号:
package com.relationinfo.txl.struts.forms;
import org.apache.struts.action.ActionForm;
public class FriendFindWhereAddressEqualsForm extends ActionForm
{
private String address;
private String crudMethod;
/**
* 设置 address
*/
public void setAddress(String address)
{
this.address = address;
}
/**
* 获得 address
*/
public String getAddress()
{
return address;
}
/**
* 设置 crudMethod
*/
public void setCrudMethod(String crudMethod)
{
this.crudMethod = crudMethod;
}
/**
* 获得 crudMethod
*/
public String getCrudMethod()
{
return crudMethod;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -