using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.IBaseDAL; using CY.Model; namespace CY.IDAL { /// ///简历投递记录-数据库操作接口 /// public interface IOA_StaffPostLogDAL : ICommonDAL, IPaging, IGetAllModel { /// /// 根据编号获得信息 /// /// 编号 /// OA_StaffPostLog GetModelByKeyid(int? Keyid); /// /// 分页查询 /// /// /// IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination,Guid _FirmId,Guid _MemberId,decimal? _Resume_id,int? _Recruitments_id,int? _PL_Status,DateTime? _BeginPL_CreatTime,DateTime? _EndPL_CreatTime,int? _PL_LookStatus,DateTime? _BeginPL_LookTime,DateTime? _EndPL_LookTime,int? _PL_ReplyStatus,DateTime? _BeginPL_ReplyTime,DateTime? _EndPL_ReplyTime,string _PL_ReplyContent,int? _PL_InviteStatus,DateTime? _BeginPL_InviteCreatTime,DateTime? _EndPL_InviteCreatTime,string _PL_InviteTime,string _PL_InvitePlace,string _PL_InvitePeople,string _PL_InvitePhone,string _PL_InviteRemark,string _PL_InviteCar,DateTime? _BeginLastUpdateTime,DateTime? _EndLastUpdateTime,string _Operator,string _Remark); /// /// 分页查询(二合一{简历管理:求职管理}) /// /// /// IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination, Guid _FirmId, Guid _MemberId, decimal? _Resume_id, int? _Recruitments_id, int? _PL_Status, int? _PostId, string _R_G_Sex, string _R_G_Degree, string _R_G_WorkYear); } }