📄 themeform.java
字号:
package forms;
import org.apache.struts.action.ActionForm;
import entity.Theme;
public class ThemeForm extends ActionForm{
private Long typeid;
private String typestyle;
public String getTypestyle() {
return typestyle;
}
public void setTypestyle(String typestyle) {
this.typestyle = typestyle;
}
public Long getTypeid() {
return typeid;
}
public void setTypeid(Long typeid) {
this.typeid = typeid;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -