📄 managerassignform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.jn0801.managerassign;
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: 08-13-2008
*
* XDoclet definition:
*
* @struts.form name="managerAssignForm"
*/
public class ManagerAssignForm extends ActionForm {
private static final long serialVersionUID = 5655380659231585527L;
private String task;
private String phone;
private String mainoption;
private String optiontype;
private String integral;
private String fee;
private String clientmanagerid;
private String[] selectUser;
/**
* Method validate
*
* @param mapping
* @param request
* @return ActionErrors
*/
public ActionErrors validate(ActionMapping mapping,
HttpServletRequest request) {
// TODO Auto-generated method stub
return null;
}
/**
* Method reset
*
* @param mapping
* @param request
*/
public void reset(ActionMapping mapping, HttpServletRequest request) {
// TODO Auto-generated method stub
}
/**
* @return the clientmanagerid
*/
public String getClientmanagerid() {
return clientmanagerid;
}
/**
* @param clientmanagerid
* the clientmanagerid to set
*/
public void setClientmanagerid(String clientmanagerid) {
this.clientmanagerid = clientmanagerid;
}
/**
* @return the fee
*/
public String getFee() {
return fee;
}
/**
* @param fee
* the fee to set
*/
public void setFee(String fee) {
this.fee = fee;
}
/**
* @return the integral
*/
public String getIntegral() {
return integral;
}
/**
* @param integral
* the integral to set
*/
public void setIntegral(String integral) {
this.integral = integral;
}
/**
* @return the mainoption
*/
public String getMainoption() {
return mainoption;
}
/**
* @param mainoption
* the mainoption to set
*/
public void setMainoption(String mainoption) {
this.mainoption = mainoption;
}
/**
* @return the optiontype
*/
public String getOptiontype() {
return optiontype;
}
/**
* @param optiontype
* the optiontype to set
*/
public void setOptiontype(String optiontype) {
this.optiontype = optiontype;
}
/**
* @return the phone
*/
public String getPhone() {
return phone;
}
/**
* @param phone
* the phone to set
*/
public void setPhone(String phone) {
this.phone = phone;
}
/**
* @return the selectUser
*/
public String[] getSelectUser() {
return selectUser;
}
/**
* @param selectUser
* the selectUser to set
*/
public void setSelectUser(String[] selectUser) {
this.selectUser = selectUser;
}
/**
* @return the task
*/
public String getTask() {
return task;
}
/**
* @param task
* the task to set
*/
public void setTask(String task) {
this.task = task;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -