?? tsmissingwebinfo.java.svn-base
字號:
package com.nsi.components.tsmissing;
/**
* @author Chris Ye, created on Oct 9, 2008
*
* TsMissingWebInfo
*/
public class TsMissingWebInfo
{
private String deptid;
private String searchtype;
private int weeks;
/**
* constructor of TsMissingWebInfo
*/
public TsMissingWebInfo()
{
deptid = "2";
searchtype = "A";
weeks = 1;
}
/**
* reset TsMissingWebInfo
*/
public void reset()
{
deptid = "2";
searchtype = "A";
weeks = 1;
}
public String getDeptid()
{
return deptid;
}
public void setDeptid(String deptid)
{
this.deptid = deptid;
}
public String getSearchtype()
{
return searchtype;
}
public void setSearchtype(String searchtype)
{
this.searchtype = searchtype;
}
public int getWeeks()
{
return weeks;
}
public void setWeeks(int weeks)
{
this.weeks = weeks;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -