init
This commit is contained in:
29
DouyinApi.Model/Tenants/TenantTypeEnum.cs
Normal file
29
DouyinApi.Model/Tenants/TenantTypeEnum.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace DouyinApi.Model.Tenants;
|
||||
|
||||
/// <summary>
|
||||
/// 租户隔离方案
|
||||
/// </summary>
|
||||
public enum TenantTypeEnum
|
||||
{
|
||||
None = 0,
|
||||
|
||||
/// <summary>
|
||||
/// Id隔离
|
||||
/// </summary>
|
||||
[Description("Id隔离")]
|
||||
Id = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 库隔离
|
||||
/// </summary>
|
||||
[Description("库隔离")]
|
||||
Db = 2,
|
||||
|
||||
/// <summary>
|
||||
/// 表隔离
|
||||
/// </summary>
|
||||
[Description("表隔离")]
|
||||
Tables = 3,
|
||||
}
|
||||
Reference in New Issue
Block a user