using Central.Control.Domain; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace MES.Production.Service.IService { /// /// Service层角色授权关系接口 /// add 作者: 季健国 QQ:181589805 by 2016-05-22 /// public interface IRolePermissionManage : IRepository { /// /// 保存角色权限 /// /// 角色ID /// 权限字符串 /// 系统ID /// bool SetRolePermission(int roleId, string newper,string sysId); } }