?? templatetype.java
字號:
package com.v246;
/*
*本類用于存傳及顯示模板類型ID,及類型,用于addTemplate.jsp中的"所屬類型"的下拉框
**/
public class TemplateType
{
protected String id;
protected String type;
public TemplateType(String id,String type)
{
this.id=id;
this.type=type;
}
public void setId(String id)
{
this.id=id;
}
public String getId()
{
return id;
}
public void setType(String type)
{
this.type=type;
}
public String getType()
{
return type;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -