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
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();
        }
 
    }
}