template_addtemplate.java
来自「本系统特色: 1、前台完全生成静态HTML 2、栏目是无级分类的」· Java 代码 · 共 58 行
JAVA
58 行
package com.v246;
public class Template_addTemplate
{
protected String modifyId;//修改模板的时候用到的变量,用于接收所修改模板的id
protected String action;
protected String templateType;
protected String templateName;
protected String content;
protected String isDefault;
public void setModifyId(String modifyId)
{
this.modifyId=modifyId;
}
public String getModifyId()
{
return this.modifyId;
}
public void setAction(String action)
{
this.action=action;
}
public String getAction()
{
return this.action;
}
public void setTemplateType(String templateType)
{
this.templateType=templateType;
}
public String getTemplateType()
{
return templateType;
}
public void setTemplateName(String templateName)
{
this.templateName=templateName;
}
public String getTemplateName()
{
return templateName;
}
public void setContent(String content)
{
this.content=content;
}
public String getContent()
{
return content;
}
public void setIsDefault(String isDefault)
{
this.isDefault=isDefault;
}
public String getIsDefault()
{
return isDefault;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?