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

📄 feedbacklevform.java

📁 基于SSH (struts+spring+hibernate)框架设计的 CRM客户关系管理系统
💻 JAVA
字号:
package com.csu.crm.base.form;

import javax.servlet.http.HttpServletRequest;

import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;

/**
 * @author 3eCRM小组:张志勇
 * @since 2007-10-2 上午02:00:19
 * @version 1.0 创建时间:2007-10-2 上午02:00:19,初始版本
 */
public class FeedbackLevForm extends ActionForm{
	private String feedbackLevId;
	private String feedbackLev;
	private String description;
	
	public String getFeedbackLevId() {
		return feedbackLevId;
	}


	public void setFeedbackLevId(String feedbackLevId) {
		this.feedbackLevId = feedbackLevId;
	}


	public String getFeedbackLev() {
		return feedbackLev;
	}


	public void setFeedbackLev(String feedbackLev) {
		this.feedbackLev = feedbackLev;
	}


	public ActionErrors validate(ActionMapping mapping,
			HttpServletRequest request) {
		// TODO Auto-generated method stub
		return null;
	}


	public void reset(ActionMapping mapping, HttpServletRequest request) {
		// TODO Auto-generated method stub
	}


	public String getDescription() {
		return description;
	}


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

⌨️ 快捷键说明

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