📄 adddocumentkindform.java
字号:
package com.stsc.archive.volumn;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.*;
public class adddocumentkindForm extends ActionForm
{
private String filetype = "";
private String archivetype = "";
private int typeid=0;
public void setFiletype(String filetype)
{
this.filetype=filetype;
}
public String getFiletype()
{
return this.filetype;
}
public void setTypeid(int typeid)
{
this.typeid=typeid;
}
public int getTypeid()
{
return this.typeid;
}
public void setArchivetype(String archivetype)
{
this.archivetype=archivetype;
}
public String getArchivetype()
{
return this.archivetype;
}
public void reset(ActionMapping mapping,HttpServletRequest req)
{
this.filetype = "";
this.archivetype = "";
this.typeid=0;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -