📄 feedbacklevform.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 + -