diff --git a/AndroidTemplate/app/src/main/res/layout/activity_splash.xml b/AndroidTemplate/app/src/main/res/layout/activity_splash.xml
index 2e5d9c7..78c3694 100644
--- a/AndroidTemplate/app/src/main/res/layout/activity_splash.xml
+++ b/AndroidTemplate/app/src/main/res/layout/activity_splash.xml
@@ -9,14 +9,15 @@
tools:context="com.example.UserSoftwareAndroidTemplate.LoginSupport.SplashActivity">
-
+ android:textSize="11sp" />
public int Grade { get; set; } = 0;
///
+ /// 用户的手机号
+ ///
+ public string Phone { get; set; }
+ ///
+ /// 用户的电子邮件
+ ///
+ public string EMail { get; set; }
+ ///
/// 该用户的注册日期,一旦注册,应该固定
///
public DateTime RegisterTime { get; set; } = DateTime.Now;
@@ -63,7 +71,7 @@ namespace CommonLibrary
///
public int LoginFailedCount { get; set; } = 0;
///
- /// 上次登录系统的方式,有winform版,wpf版,web版
+ /// 上次登录系统的方式,有winform版,wpf版,web版,Android版
///
public string LastLoginWay { get; set; } = string.Empty;
///
diff --git a/CommonLibrary/UserSystem.cs b/CommonLibrary/UserSystem.cs
index f8c1b08..1764e4e 100644
--- a/CommonLibrary/UserSystem.cs
+++ b/CommonLibrary/UserSystem.cs
@@ -44,7 +44,7 @@ namespace CommonLibrary
**************************************************************************/
- SoftBasic.FrameworkVersion = new SystemVersion("1.7.4");
+ SoftBasic.FrameworkVersion = new SystemVersion("1.7.5");
}