logtypefindwherelogtypecodeequalsform.java

来自「STRUTS数据库项目开发宝典」· Java 代码 · 共 48 行

JAVA
48
字号
package org.helpsoft.helplog.struts.forms;

import java.math.*;
import java.text.*;
import org.apache.struts.action.*;
import javax.servlet.http.HttpServletRequest;
import org.helpsoft.helplog.dto.*;

public class LogtypeFindWhereLogtypecodeEqualsForm extends ActionForm
{
	private String logtypecode;

	private String crudMethod;

	/** 
	 * Sets the value of logtypecode
	 */
	public void setLogtypecode(String logtypecode)
	{
		this.logtypecode = logtypecode;
	}

	/** 
	 * Gets the value of logtypecode
	 */
	public String getLogtypecode()
	{
		return logtypecode;
	}

	/** 
	 * Sets the value of crudMethod
	 */
	public void setCrudMethod(String crudMethod)
	{
		this.crudMethod = crudMethod;
	}

	/** 
	 * Gets the value of crudMethod
	 */
	public String getCrudMethod()
	{
		return crudMethod;
	}

}

⌨️ 快捷键说明

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