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 IUserPermissionManage : IRepository<SYS_USER_PERMISSION>
- {
- /// <summary>
- /// 设置用户权限
- /// </summary>
- /// <param name="userId">用户ID</param>
- /// <param name="newper">权限字符串</param>
- /// <param name="sysId">系统ID</param>
- /// <returns></returns>
- bool SetUserPermission(int userId, string newper,string sysId);
- }
- }
|