客户端新增系统配置界面,集中处理系统配置功能,完成信任客户端列表功能,v1.4.7
This commit is contained in:
@@ -54,6 +54,10 @@ namespace CommonLibrary
|
||||
/// </summary>
|
||||
public bool Can_Account_Login { get; set; } = true;
|
||||
/// <summary>
|
||||
/// 是否允许一个用户名重复登录系统
|
||||
/// </summary>
|
||||
public bool AllowUserMultiOnline { get; set; } = false;
|
||||
/// <summary>
|
||||
/// 不允许登录系统的原因
|
||||
/// </summary>
|
||||
public string Account_Forbidden_Reason { get; set; } = "系统处于维护中,请稍后登录。";
|
||||
@@ -149,6 +153,7 @@ namespace CommonLibrary
|
||||
{ nameof(SystemVersion), new JValue(SystemVersion.ToString()) },
|
||||
{ nameof(Announcement), new JValue(Announcement) },
|
||||
{ nameof(Can_Account_Login), new JValue(Can_Account_Login) },
|
||||
{ nameof(AllowUserMultiOnline),new JValue(AllowUserMultiOnline) },
|
||||
{ nameof(Account_Forbidden_Reason), new JValue(Account_Forbidden_Reason) },
|
||||
{ nameof(SystemFactories), new JArray(SystemFactories) },
|
||||
{ nameof(WhetherToEnableTrustedClientAuthentication),new JValue(WhetherToEnableTrustedClientAuthentication) },
|
||||
@@ -166,6 +171,7 @@ namespace CommonLibrary
|
||||
SystemVersion = new SystemVersion(SoftBasic.GetValueFromJsonObject(json, nameof(SystemVersion), "1.0.0"));
|
||||
Announcement = SoftBasic.GetValueFromJsonObject(json, nameof(Announcement), Announcement);
|
||||
Can_Account_Login = SoftBasic.GetValueFromJsonObject(json, nameof(Can_Account_Login), Can_Account_Login);
|
||||
AllowUserMultiOnline = SoftBasic.GetValueFromJsonObject(json, nameof(AllowUserMultiOnline), AllowUserMultiOnline);
|
||||
Account_Forbidden_Reason = SoftBasic.GetValueFromJsonObject(json, nameof(Account_Forbidden_Reason), Account_Forbidden_Reason);
|
||||
|
||||
if (json[nameof(SystemFactories)] != null)
|
||||
|
||||
Reference in New Issue
Block a user