using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CY.IBaseDAL;
using CY.Model;
namespace CY.IDAL
{
///
/// 办公系统员工角色关系表-数据库操作接口
///
public interface IOA_StaffRoleRelDAL : ICommonDAL, IPaging, IGetAllModel
{
///
/// 根据会员编号查询单个角色关联
///
///
///
OA_StaffRoleRel SelectModel(int? StaffId);
}
}