1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CY.IDAL;
using CY.Model;
using AbstractFactory;
using CY.IBaseDAL;
using CY.Infrastructure.DESEncrypt;
using CY.Infrastructure.Query;
 
namespace CY.BLL
{
    public class OA_StaffPostLogBLL
    {
        IOA_StaffPostLogDAL iOA_StaffPostLogDAL = null;
 
        public OA_StaffPostLogBLL()
        {
            iOA_StaffPostLogDAL = Factory.GetDALByInterfaceName(DALInterface.IOA_StaffPostLogDAL) as IOA_StaffPostLogDAL;
        }
 
        /// <summary>
        /// 添加
        /// </summary>
        /// <param name="model"></param>
        /// <returns></returns>
        public bool InsertModel(Model.OA_StaffPostLog model)
        {
            return iOA_StaffPostLogDAL.InserModel(model);
        }
 
        /// <summary>
        /// 更新
        /// </summary>
        /// <param name="model"></param>
        /// <returns></returns>
        public bool UpdateModel(Model.OA_StaffPostLog model)
        {
 
            return iOA_StaffPostLogDAL.UpdateModel(model);
        }
 
        /// <summary>
        /// 删除
        /// </summary>
        /// <param name="model"></param>
        /// <returns></returns>
        public bool DeleteModel(Model.OA_StaffPostLog model)
        {
 
            return iOA_StaffPostLogDAL.DeleteModel(model);
        }
 
        /// <summary>
        /// 根据编号获得信息
        /// </summary>
        /// <param name="Keyid">编号</param>
        /// <returns></returns>
        public OA_StaffPostLog GetModelByKeyid(int? Keyid)
        {
            return iOA_StaffPostLogDAL.GetModelByKeyid(Keyid);
        }
 
        /// <summary>
        /// 分页查询
        /// </summary>
        /// <param name="pagination"></param>
        /// <returns></returns>
        public IEnumerable<Model.OA_StaffPostLog> 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)
        {
            return iOA_StaffPostLogDAL.SelectModelPage(pagination, _FirmId, _MemberId, _Resume_id, _Recruitments_id, _PL_Status,_BeginPL_CreatTime,_EndPL_CreatTime, _PL_LookStatus,_BeginPL_LookTime,_EndPL_LookTime, _PL_ReplyStatus,_BeginPL_ReplyTime,_EndPL_ReplyTime, _PL_ReplyContent, _PL_InviteStatus,_BeginPL_InviteCreatTime,_EndPL_InviteCreatTime, _PL_InviteTime, _PL_InvitePlace, _PL_InvitePeople, _PL_InvitePhone, _PL_InviteRemark, _PL_InviteCar,_BeginLastUpdateTime,_EndLastUpdateTime, _Operator, _Remark);
        }
 
        /// <summary>
        /// 分页查询(二合一{简历管理:求职管理})
        /// </summary>
        /// <param name="pagination"></param>
        /// <returns></returns>
        public IEnumerable<Model.OA_StaffPostLog> 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)
        {
            return iOA_StaffPostLogDAL.SelectModelPage(pagination, _FirmId, _MemberId, _Resume_id, _Recruitments_id, _PL_Status,  _PostId,  _R_G_Sex,  _R_G_Degree,  _R_G_WorkYear);
        }
    }
}