using Learun.Util;
using System.Data;
using System.Collections.Generic;
namespace Learun.Application.Report
{
///
/// 版 本 PIT-ADMS V7.0.3 敏捷开发框架
/// Copyright (c) 2013-2018 Hexagon PPM
/// 创 建:超级管理员
/// 日 期:2019-03-14 15:17
/// 描 述:报表文件管理
///
public interface RptManageIBLL
{
#region 获取数据
///
/// 获取页面显示列表数据
///
/// 查询参数
///
IEnumerable GetPageList(Pagination pagination, string queryJson);
///
/// 获取LR_RPT_FileInfo表实体数据
/// 主键
///
///
LR_RPT_FileInfoEntity GetLR_RPT_FileInfoEntity(string keyValue);
///
/// 获取报表文件树
///
///
List GetFileTree();
#endregion
#region 提交数据
///
/// 删除实体数据
/// 主键
///
///
void DeleteEntity(string keyValue);
///
/// 保存实体数据(新增、修改)
/// 主键
///
///
void SaveEntity(string keyValue, LR_RPT_FileInfoEntity entity);
#endregion
}
}