username@email.com
2025-05-14 99ddfbcecf0fa2881eb3a91028257eef87dab6de
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Data.SqlClient;
using CY.Model;
using CY.BLL;
using CY.Infrastructure.Common;
using CY.Infrastructure.Query;
 
namespace CY.WebForm.Pages.front
{
    //吴辉
    //企业简介
    public partial class RecruitmentsFirm : FrontBasePage
    {
        OA_StaffRecruitmentsBLL bll_OA_StaffRecruitmentsBLL = null;
        OA_StaffFirmProfileBLL bll_OA_StaffFirmProfileBLL = null;
        EC_MemberBasicBLL bll_EC_MemberBasicBLL = null;
 
        //初始化
        public RecruitmentsFirm()
        {
            bll_OA_StaffRecruitmentsBLL = new OA_StaffRecruitmentsBLL();
            bll_OA_StaffFirmProfileBLL = new OA_StaffFirmProfileBLL();
            bll_EC_MemberBasicBLL = new EC_MemberBasicBLL();
        }
 
        //页面加载
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                InitData();
            }
        }
 
        //数据加载
        public void InitData()
        {
            OA_StaffRecruitments m_OA_StaffRecruitments = bll_OA_StaffRecruitmentsBLL.GetModelByKeyid(Request["id"].ToInt32());
            if (m_OA_StaffRecruitments != null)
            {
 
                this.spanFirmId.InnerText = m_OA_StaffRecruitments.MP_CompanyName;
                this.spanPostNamex.InnerText = m_OA_StaffRecruitments.PostName;
                OA_StaffFirmProfile m_OA_StaffFirmProfile = bll_OA_StaffFirmProfileBLL.GetModelByFirmId(m_OA_StaffRecruitments.FirmId);
                if (m_OA_StaffFirmProfile != null)
                {
                    this.spanR_PostNeed.InnerHtml = m_OA_StaffFirmProfile.Remark;
                    this.txtMP_PostNumber.InnerText = m_OA_StaffFirmProfile.MP_PostNumber.ToString2();
                    this.txtMP_ResumePlace.InnerText = m_OA_StaffFirmProfile.MP_ResumePlace.ToString2();
                    this.txtMP_ResumePeople.InnerText = m_OA_StaffFirmProfile.MP_ResumePeople.ToString2();
                    this.txtMP_ResumePhone.InnerText = m_OA_StaffFirmProfile.MP_ResumePhone.ToString2();
                    this.txtMP_ResumeCarWay.InnerText = m_OA_StaffFirmProfile.MP_ResumeCarWay.ToString2();
                }
            }
        }
    }
}