42 lines
1.2 KiB
C#
42 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Data;
|
|
using WMS.Model.Base;
|
|
using WMS.Model.SystemManage;
|
|
|
|
namespace WMS.IData.ISystemManage
|
|
{
|
|
public interface ISysRole
|
|
{
|
|
/// <summary>
|
|
/// 获取角色信息
|
|
/// </summary>
|
|
/// <param name="strRoleId">Role Name</param>
|
|
/// <returns></returns>
|
|
List<RoleModel> GetRole(string strRoleId);
|
|
|
|
/// <summary>
|
|
/// 获取角色对应的用户信息
|
|
/// </summary>
|
|
/// <param name="strRoleId">Role Name</param>
|
|
/// <returns></returns>
|
|
List<UserDataModel> GetRoleUser(string strRoleId);
|
|
|
|
/// <summary>
|
|
/// 获取角色对象的功能操作
|
|
/// </summary>
|
|
/// <param name="strRoleId">Role Name</param>
|
|
/// <returns></returns>
|
|
List<RoleMenuFunModel> GetRoleMenuFun(string strRoleId,string strType);
|
|
|
|
///// <summary>
|
|
///// 获取角色对象的功能操作
|
|
///// </summary>
|
|
///// <param name="strRoleId">Role Name</param>
|
|
///// <returns></returns>
|
|
//DataSet GetRoleMenuFun(string strRoleId);
|
|
}
|
|
}
|