fix #I8OB8D 增加可以配置界面是否缓存

This commit is contained in:
wintel 2023-12-30 20:37:38 +08:00
parent 51155a7790
commit cd81340814
2 changed files with 104 additions and 93 deletions

View File

@ -64,6 +64,11 @@ namespace OpenAuth.App.Response
public bool IsSys { get; set; }
/// <summary>
/// 前端界面是否缓存
/// </summary>
public bool KeepAlive { get; set; }
/// <summary>
/// 模块中的元素
/// </summary>

View File

@ -90,5 +90,11 @@ namespace OpenAuth.Repository.Domain
[Description("是否系统模块")]
public bool IsSys { get; set; }
/// <summary>
/// 前端界面是否缓存
/// </summary>
/// [Description("前端界面是否缓存")]
public bool KeepAlive { get; set; }
}
}