/* * Copyright 2002-2006 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.openuap.cms.comment.model; /** * <p> * 评论模板实体 * </p> * * <p> * $Id: CommentTpl.java 4017 2011-03-13 13:55:50Z orangeforjava $ * </p> * * @author Joseph * @version 4.0 */ public class CommentTpl { private int id; /** 模板套系名称. */ private String tplName; /** 模板路径. */ private String directory; /** 模板版权. */ private String copyright; /** 是否是系统保留模板. */ private boolean reserved; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getTplName() { return tplName; } public void setTplName(String tplName) { this.tplName = tplName; } public String getDirectory() { return directory; } public void setDirectory(String directory) { this.directory = directory; } public String getCopyright() { return copyright; } public void setCopyright(String copyright) { this.copyright = copyright; } public boolean isReserved() { return reserved; } public void setReserved(boolean reserved) { this.reserved = reserved; } }