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 IUserRoleManage : IRepository
{
///
/// 设置用户角色
/// add 作者: 季健国 QQ:181589805 by 2016-06-10
///
/// 用户ID
/// 角色ID字符串
///
bool SetUserRole(int userId, string roleId);
}
}