using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CY.IBaseDAL;
using CY.Model;
namespace CY.IDAL
{
///
///简历信息教育经历-数据库操作接口
///
public interface IOA_StaffResumeEducationDAL : ICommonDAL, IPaging, IGetAllModel
{
///
/// 根据编号获得信息
///
/// 编号
///
OA_StaffResumeEducation GetModelByKeyid(int? Keyid);
///
/// 根据厂商编号获得信息
///
/// 厂商编号
///
IEnumerable GetListByMemberid(Guid Memberid);
///
/// 分页查询
///
///
///
IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination, int? _Keyid, Guid _Memberid, string _R_E_StudyStartTime, string _R_E_StudyEndTime, string _R_E_SchoolName, string _R_E_Professional, string _R_E_ProfessionalDetail, int? _OrderNum, DateTime? _BeginLastUpdateTime, DateTime? _EndLastUpdateTime, string _Operator);
}
}