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.personnel { //吴辉 //招聘信息明细 public partial class OA_StaffRecruitmentsDetail : BasePage { OA_StaffRecruitmentsBLL bll_OA_StaffRecruitmentsBLL = null; //初始化 public OA_StaffRecruitmentsDetail() { bll_OA_StaffRecruitmentsBLL = new OA_StaffRecruitmentsBLL(); } //页面加载 protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { InitData(); } } //数据加载 public void InitData() { OA_StaffRecruitments m_OA_StaffRecruitments = bll_OA_StaffRecruitmentsBLL.GetModelByKeyid(Request["keyid"].ToInt32()); if (m_OA_StaffRecruitments != null) { this.spanFirmId.InnerText = m_OA_StaffRecruitments.FirmId.ToString2(); this.spanPostid.InnerText = m_OA_StaffRecruitments.Postid.ToString2(); this.spanR_WorkProvence.InnerText = m_OA_StaffRecruitments.R_WorkProvence.ToString2(); this.spanR_WorkCity.InnerText = m_OA_StaffRecruitments.R_WorkCity.ToString2(); this.spanR_StartTime.InnerText = m_OA_StaffRecruitments.R_StartTime.ToString2(); this.spanR_EndTime.InnerText = m_OA_StaffRecruitments.R_EndTime.ToString2(); this.spanR_PostDetail.InnerText = m_OA_StaffRecruitments.R_PostDetail.ToString2(); this.spanR_PostNeed.InnerText = m_OA_StaffRecruitments.R_PostNeed.ToString2(); this.spanR_Salary.InnerText = m_OA_StaffRecruitments.R_Salary.ToString2(); this.spanR_Status.InnerText = m_OA_StaffRecruitments.R_Status.ToString2(); this.spanR_ResumeAllCount.InnerText = m_OA_StaffRecruitments.R_ResumeAllCount.ToString2(); this.spanR_ResumeNewCount.InnerText = m_OA_StaffRecruitments.R_ResumeNewCount.ToString2(); this.spanLastUpdateTime.InnerText = m_OA_StaffRecruitments.LastUpdateTime.ToString2(); this.spanOperator.InnerText = m_OA_StaffRecruitments.Operator.ToString2(); this.spanRemark.InnerText = m_OA_StaffRecruitments.Remark.ToString2(); } } } }