eNews新闻发布系统 JSP+Struts+JSTL+EL+mysql

源代码在线查看: template_addtemplate.java

软件大小: 3748 K
上传用户: wwangllei
关键词: Struts eNews mysql JSTL
下载地址: 免注册下载 普通下载 VIP

相关代码

				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;
					}
				}			

相关资源