123456789101112131415161718192021222324 |
- using Central.Control.Domain;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace MES.Production.Service.IService
- {
- /// <summary>
- /// Service层用户与角色关系接口
- /// add 作者: 季健国 QQ:181589805 by 2016-05-22
- /// </summary>
- public interface IUserRoleManage : IRepository<SYS_USER_ROLE>
- {
- /// <summary>
- /// 设置用户角色
- /// add 作者: 季健国 QQ:181589805 by 2016-06-10
- /// </summary>
- /// <param name="userId">用户ID</param>
- /// <param name="roleId">角色ID字符串</param>
- /// <returns></returns>
- bool SetUserRole(int userId, string roleId);
- }
- }
|