using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.IBaseDAL; using CY.Model; namespace CY.IDAL { /// ///简历信息工作经验-数据库操作接口 /// public interface IOA_StaffResumeWorkDAL : ICommonDAL, IPaging, IGetAllModel { /// /// 根据编号获得信息 /// /// 编号 /// OA_StaffResumeWork GetModelByKeyid(int? Keyid); /// /// 根据厂商编号获得信息 /// /// 厂商编号 /// IEnumerable GetListByMemberid(Guid Memberid); /// /// 分页查询 /// /// /// IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination, Guid _Memberid, string _R_W_StudyStartTime, string _R_W_StudyEndTime, string _R_W_CompanyName, string _R_W_Industry, string _R_W_CompanyScale, string _R_W_CompanyNature, string _R_W_Department, string _R_W_Post, string _R_W_WorkDetail, int? _OrderNum, DateTime? _BeginLastUpdateTime, DateTime? _EndLastUpdateTime, string _Operator); } }