using Lottomat.Application.Entity.AuthorizeManage;
using System.Collections.Generic;
namespace Lottomat.Application.IService.AuthorizeManage
{
///
/// 版 本 1.0
/// Copyright (c) 2016-2017
/// 创建人:赵轶
/// 日 期:2015.10.29 15:13
/// 描 述:系统视图
///
public interface IModuleColumnService
{
#region 获取数据
///
/// 视图列表
///
///
List GetList();
///
/// 视图列表
///
/// 功能Id
///
List GetList(string moduleId);
///
/// 视图实体
///
/// 主键值
///
ModuleColumnEntity GetEntity(string keyValue);
#endregion
#region 提交数据
///
/// 添加视图
///
/// 视图实体
void AddEntity(ModuleColumnEntity moduleColumnEntity);
#endregion
}
}