⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 problemform.java

📁 本例使用Java + Jsp 实现选择树的过程,主要使用Struts+JDBC/hibernate架构
💻 JAVA
字号:
/*
 * $Workfile: ProblemForm.java$ 
 * Copyright (c) 2007 Jama, International.
 * All rights reserved.
 * Creator Jun
 * Last Changed by: $Author: Jun$ 
 * On: $Date: 2007-8-30 下午09:52:37$ 
 * $Revision: 1$ 
 */
package com.jama.rcrm.service.web.form;

import com.jama.common.base.BaseActionForm;

public class ProblemForm extends BaseActionForm
{
	private String problemGuid;

	private String problemName;

	private String description;

	private Long inactive;

	private String parentProblemGuid;

	private Long levelNo;

	public ProblemForm()
	{
	}

	public ProblemForm(String problemGuid, String problemName,
			String description, Long inactive, String parentProblemGuid,
			Long levelNo)
	{
		this.problemGuid = problemGuid;
		this.problemName = problemName;
		this.description = description;
		this.inactive = inactive;
		this.levelNo = levelNo;
		this.parentProblemGuid = parentProblemGuid;

	}

	public String getDescription()
	{
		return description;
	}

	public void setDescription(String description)
	{
		this.description = description;
	}

	public Long getInactive()
	{
		return inactive;
	}

	public void setInactive(Long inactive)
	{
		this.inactive = inactive;
	}

	public Long getLevelNo()
	{
		return levelNo;
	}

	public void setLevelNo(Long levelNo)
	{
		this.levelNo = levelNo;
	}

	public String getParentProblemGuid()
	{
		return parentProblemGuid;
	}

	public void setParentProblemGuid(String parentProblemGuid)
	{
		this.parentProblemGuid = parentProblemGuid;
	}

	public String getProblemGuid()
	{
		return problemGuid;
	}

	public void setProblemGuid(String problemGuid)
	{
		this.problemGuid = problemGuid;
	}

	public String getProblemName()
	{
		return problemName;
	}

	public void setProblemName(String problemName)
	{
		this.problemName = problemName;
	}

}

⌨️ 快捷键说明

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