complaintlevform.java
来自「基于SSH (struts+spring+hibernate)框架设计的 C」· Java 代码 · 共 64 行
JAVA
64 行
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-1 下午09:15:03
* @version 1.0 创建时间:2007-10-1 下午09:15:03,初始版本
*/
public class ComplaintLevForm extends ActionForm{
//COMPLAINT_LEV_ID COMPLAINT_LEV DESCRIPTION
private String complaintLevId;
private String complaintLev;
private String description;
public String getComplaintLev() {
return complaintLev;
}
public void setComplaintLev(String complaintLev) {
this.complaintLev = complaintLev;
}
public String getComplaintLevId() {
return complaintLevId;
}
public void setComplaintLevId(String complaintLevId) {
this.complaintLevId = complaintLevId;
}
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 + -
显示快捷键?