📄 jfdlrform.java
字号:
package org.helpsoft.contract.struts.forms;
import java.math.*;
import java.text.*;
import org.apache.struts.action.*;
import javax.servlet.http.HttpServletRequest;
import org.helpsoft.contract.dto.*;
public class JfdlrForm extends ActionForm
{
private String jfdlrbm;
private String jfdlrxm;
private String crudMethod;
/**
* Sets the value of jfdlrbm
*/
public void setJfdlrbm(String jfdlrbm)
{
this.jfdlrbm = jfdlrbm;
}
/**
* Gets the value of jfdlrbm
*/
public String getJfdlrbm()
{
return jfdlrbm;
}
/**
* Sets the value of jfdlrxm
*/
public void setJfdlrxm(String jfdlrxm)
{
this.jfdlrxm = jfdlrxm;
}
/**
* Gets the value of jfdlrxm
*/
public String getJfdlrxm()
{
return jfdlrxm;
}
/**
* Sets the value of crudMethod
*/
public void setCrudMethod(String crudMethod)
{
this.crudMethod = crudMethod;
}
/**
* Gets the value of crudMethod
*/
public String getCrudMethod()
{
return crudMethod;
}
/**
* method'reset'
*
*/
public void reset()
{
jfdlrbm = "";
jfdlrxm = "";
}
/**
* method'validate'
*
* @param mapping
* @param request
* @return ActionErrors
*/
public ActionErrors validate(ActionMapping mapping, HttpServletRequest request)
{
ActionErrors _errors = new ActionErrors();
return _errors;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -