using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.IBaseDAL; using CY.Model; namespace CY.IDAL { /// /// 用户角色关联表-数据库操作接口 /// public interface ISys_Permissions_UserRoleRelationDAL : ICommonDAL, IPaging, IGetAllModel { /// /// 根据会员编号查询单个角色关联 /// /// /// Sys_Permissions_UserRoleRelation SelectModel(Guid MemberId); } }