using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.IBaseDAL; using CY.Model; namespace CY.IDAL { /// ///简历信息求职意向-数据库操作接口 /// public interface IOA_StaffResumeIntentionDAL : ICommonDAL, IPaging, IGetAllModel { /// /// 根据编号获得信息 /// /// 编号 /// OA_StaffResumeIntention GetModelByKeyid(int? Keyid); /// /// 根据厂商编号获得信息 /// /// 厂商编号 /// OA_StaffResumeIntention GetModelByMemberid(Guid Memberid); /// /// 分页查询 /// /// /// IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination, Guid _Memberid, string _R_I_WorkProvence, string _R_I_WorkCity, string _R_I_Industry, int? _R_I_Consultants_id, int? _R_I_Postid, string _R_I_PostName, string _R_I_HopeMoney, string _R_I_WorkTime, string _R_I_YouDetail, int? _OrderNum, DateTime? _BeginLastUpdateTime, DateTime? _EndLastUpdateTime, string _Operator); } }