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 IRolePermissionManage : IRepository<SYS_ROLE_PERMISSION>
- {
- /// <summary>
- /// 保存角色权限
- /// </summary>
- /// <param name="roleId">角色ID</param>
- /// <param name="newper">权限字符串</param>
- /// <param name="sysId">系统ID</param>
- /// <returns></returns>
- bool SetRolePermission(int roleId, string newper,string sysId);
- }
- }
|