using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.IBaseDAL; using CY.Model; namespace CY.IDAL { /// ///招聘信息-数据库操作接口 /// public interface IOA_StaffRecruitmentsDAL : ICommonDAL, IPaging, IGetAllModel { /// /// 根据编号获得信息 /// /// 编号 /// OA_StaffRecruitments GetModelByKeyid(int? Keyid); /// /// 分页查询 /// /// /// IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination, Guid _FirmId, int? _Postid, string _R_WorkProvence, string _R_WorkCity, DateTime? _BeginR_StartTime, DateTime? _EndR_StartTime, DateTime? _BeginR_EndTime, DateTime? _EndR_EndTime, string _R_PostDetail, string _R_PostNeed, int? _R_Vacancies, string _R_Salary, int? _R_Status, int? _R_ResumeAllCount, int? _R_ResumeNewCount, DateTime? _BeginLastUpdateTime, DateTime? _EndLastUpdateTime, string _Operator, string _Remark); /// /// 分页查询(职位搜索) /// /// /// IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination, int? _Postid, string _R_WorkProvence, string _R_WorkCity, DateTime? _BeginR_StartTime, string MP_ResumeIndustry); } }