From 072cc5decf541a57d579b39cfb6c92e0f12dcd04 Mon Sep 17 00:00:00 2001
From: yzh <snbbt@21cn.com>
Date: 星期二, 10 五月 2022 15:29:43 +0800
Subject: [PATCH] 充值功能优化,客户表增加余额、订单表增加充值金额

---
 web/Model/MasterPageBase.cs |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/web/Model/MasterPageBase.cs b/web/Model/MasterPageBase.cs
index 88c3311..e2d3c99 100644
--- a/web/Model/MasterPageBase.cs
+++ b/web/Model/MasterPageBase.cs
@@ -1,15 +1,15 @@
-锘� 
+锘�
 using System;
 using System.Web;
 using System.Web.UI;
 
 public class MasterPageBase<T> : MasterPage where T : ISessionObject
 {
-  public PageContext<T> AppContext { get; set; }
+    public PageContext<T> AppContext { get; set; }
 
-  protected override void OnInit(EventArgs e)
-  {
-    this.AppContext = new PageContext<T>(HttpContext.Current);
-    base.OnInit(e);
-  }
+    protected override void OnInit(EventArgs e)
+    {
+        this.AppContext = new PageContext<T>(HttpContext.Current);
+        base.OnInit(e);
+    }
 }

--
Gitblit v1.9.1