using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using CY.BLL; using CY.Model; using CY.Infrastructure.Query; using CY.Infrastructure.Common; namespace CY.WebForm.Pages.sysglobal { //吴辉 //诚信等级规则详情 public partial class CreditLineLevelRuleDetail : System.Web.UI.Page { Pay_CreditLineLevelRuleBLL bll_Pay_CreditLineLevelRuleBLL = null; //初始化 public CreditLineLevelRuleDetail() { bll_Pay_CreditLineLevelRuleBLL = new Pay_CreditLineLevelRuleBLL(); } //页面加载 protected void Page_Load(object sender, EventArgs e) { Pay_CreditLineLevelRule model = bll_Pay_CreditLineLevelRuleBLL.GetModel(Request["keyid"].ToInt32()); this.spnKeyid.InnerText = model.Keyid.ToString2(); this.spnLevelName.InnerText = model.LevelName.ToString2(); this.imgLevelIcon.Src = model.LevelIcon.ToString2(); this.spnMaxScore.InnerText = model.MaxScore.ToString2(); this.spnNextLevelRule.InnerText = model.NextLevelRule.ToString2(); this.spnCredit.InnerText = model.Credit.ToString2(); this.spnRebateProportion.InnerText = model.RebateProportion.ToString2(); this.spnLastUpdateTime.InnerText = model.LastUpdateTime.ToString2(); this.spnOperator.InnerText = model.Operator.ToString2(); this.lblRemark.InnerText = model.Remark.ToString2(); } } }