38 lines
944 B
C#
38 lines
944 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 增加角色功能权限
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
void Add(FunctionRoleModel model);
|
|
|
|
/// <summary>
|
|
/// 更新角色功能权限
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
void Update(FunctionRoleModel model);
|
|
|
|
/// <summary>
|
|
/// 删除角色功能权限
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
void Delete(FunctionRoleModel model);
|
|
|
|
/// <summary>
|
|
/// 回去角色功能权限列表
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
/// <returns></returns>
|
|
DataTable GetList(FunctionRoleModel model);
|
|
}
|
|
}
|