feedbacklevform.java

来自「基于SSH (struts+spring+hibernate)框架设计的 C」· Java 代码 · 共 60 行

JAVA
60
字号
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 + =
减小字号Ctrl + -
显示快捷键?