调整项目依赖
This commit is contained in:
19
common/Tnb.SqlSugar/Options/TenantOptions.cs
Normal file
19
common/Tnb.SqlSugar/Options/TenantOptions.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using JNPF.ConfigurableOptions;
|
||||
|
||||
namespace SqlSugar;
|
||||
|
||||
/// <summary>
|
||||
/// 租户配置.
|
||||
/// </summary>
|
||||
public sealed class TenantOptions : IConfigurableOptions
|
||||
{
|
||||
/// <summary>
|
||||
/// 是否多租户模式.
|
||||
/// </summary>
|
||||
public bool MultiTenancy { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 多租户数据接口.
|
||||
/// </summary>
|
||||
public string MultiTenancyDBInterFace { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user