📄 dictionaryform.java
字号:
package edu.yinhe.mis.control;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.upload.FormFile;
import edu.yinhe.mis.util.Filer;
public class DictionaryForm extends ActionForm {
private String id="";
private String name="";
private String value="";
private String pid="";
private String remark="";
private String currentPage="";
private String scope="";
private FormFile file = null;
/**
* Method reset
* @param mapping
* @param request
*/
public void reset(ActionMapping mapping, HttpServletRequest request) {
Filer filer = new Filer();
id = (String)filer.execute(id);
name = (String)filer.execute(name);
value = (String)filer.execute(value);
pid = (String)filer.execute(pid);
remark = (String)filer.execute(remark);
scope = (String)filer.execute(scope);
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public String getPid() {
return pid;
}
public void setPid(String pid) {
this.pid = pid;
}
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public String getCurrentPage() {
return currentPage;
}
public void setCurrentPage(String currentPage) {
this.currentPage = currentPage;
}
public String getScope() {
return scope;
}
public void setScope(String scope) {
this.scope = scope;
}
public FormFile getFile() {
return file;
}
public void setFile(FormFile file) {
this.file = file;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -