📄 messagemanageform.java
字号:
//Created by MyEclipse Struts// XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.1.0/xslt/JavaClass.xslpackage com.crm.message;import javax.servlet.http.HttpServletRequest;import org.apache.struts.action.ActionErrors;import org.apache.struts.action.ActionForm;import org.apache.struts.action.ActionMapping;/** * MyEclipse Struts * Creation date: 10-22-2007 * * XDoclet definition: * @struts.form name="usermanageForm" */public class MessagemanageForm extends ActionForm { private String message_id; private String employee_id; private String employee_name; private String service_type; private String message; private String create_date; private String issend; private String phone; private String cust_id; private String cust_name; private String task; // --------------------------------------------------------- Methods public String getTask() { return task; } public void setTask(String task) { this.task = task; } /** * Method validate * @param mapping * @param request * @return ActionErrors */ public ActionErrors validate( ActionMapping mapping, HttpServletRequest request) { return null; } /** * Method reset * @param mapping * @param request */ public void reset(ActionMapping mapping, HttpServletRequest request) { // TODO Auto-generated method stub } public String getCreate_date() { return create_date; } public void setCreate_date(String create_date) { this.create_date = create_date; } public String getCust_id() { return cust_id; } public void setCust_id(String cust_id) { this.cust_id = cust_id; } public String getCust_name() { return cust_name; } public void setCust_name(String cust_name) { this.cust_name = cust_name; } public String getEmployee_id() { return employee_id; } public void setEmployee_id(String employee_id) { this.employee_id = employee_id; } public String getIssend() { return issend; } public void setIssend(String issend) { this.issend = issend; } public String getMessage() { return message; } public void setMessage(String message) { this.message = message; } public String getMessage_id() { return message_id; } public void setMessage_id(String message_id) { this.message_id = message_id; } public String getPhone() { return phone; } public void setPhone(String phone) { this.phone = phone; } public String getEmployee_name() { return employee_name; } public void setEmployee_name(String employee_name) { this.employee_name = employee_name; } public String getService_type() { return service_type; } public void setService_type(String service_type) { this.service_type = service_type; } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -