using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using WMS.Model.SystemManage;
using System.Data;
namespace WMS.IData.ISystemManage
{
public interface IFunctionRole
{
///
/// 增加角色功能权限
///
///
void Add(FunctionRoleModel model);
///
/// 更新角色功能权限
///
///
void Update(FunctionRoleModel model);
///
/// 删除角色功能权限
///
///
void Delete(FunctionRoleModel model);
///
/// 回去角色功能权限列表
///
///
///
DataTable GetList(FunctionRoleModel model);
}
}