using Learun.Util;
using System.Collections.Generic;
namespace Learun.Application.Base.SystemModule
{
///
/// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
/// Copyright (c) 2013-2018 北京泉江科技有限公司
/// 创建人:陈彬彬
/// 日 期:2017.04.01
/// 描 述:接口管理
///
public interface InterfaceIBLL
{
#region 获取数据
///
/// 获取列表数据
///
///
List GetList();
///
/// 获取树形数据列表
///
///
List GetTree();
///
/// 获取分页列表
///
/// 分页参数
/// 关键词
///
List GetPageList(Pagination pagination, string keyword);
///
/// 获取实体数据
///
/// 主键
///
InterfaceEntity GetEntity(string keyValue);
///
/// 获取实体数据
///
/// 接口地址
///
InterfaceEntity GetEntityByUrl(string url);
#endregion
#region 提交数据
///
/// 虚拟删除分类数据
///
/// 主键
void DeleteEntity(string keyValue);
///
/// 保存分类数据实体
///
/// 主键
/// 实体
void SaveEntity(string keyValue, InterfaceEntity entity);
#endregion
}
}