Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/OsQuereyTemplateServiceI.java
@@ -31,9 +31,21 @@
     */
    BaseResult queryTemplateList(String btmName, Boolean linkFlag) throws PLException;
    /**
     * 查询模板
     * 保存查询模板
     * @param qtd 查询模板实体类
     * @return 保存结果
     */
    BaseResult saveTemplate(QTD qtd) throws PLException;
    /**
     * 修改查询模板
     * @param qtd 查询模板实体类
     * @return 保存结果
     */
    BaseResult updateTemplate(QTD qtd) throws PLException;
    /**
     * 删除查询模板
     * @param name 查询模板名
     * @return 保存结果
     */
    BaseResult deleteTemplate(String name) throws PLException;
}