init
This commit is contained in:
15
DouyinApi.Model/Tenants/ITenantEntity.cs
Normal file
15
DouyinApi.Model/Tenants/ITenantEntity.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using SqlSugar;
|
||||
|
||||
namespace DouyinApi.Model.Tenants;
|
||||
|
||||
/// <summary>
|
||||
/// 租户模型接口
|
||||
/// </summary>
|
||||
public interface ITenantEntity
|
||||
{
|
||||
/// <summary>
|
||||
/// 租户Id
|
||||
/// </summary>
|
||||
[SugarColumn(DefaultValue = "0")]
|
||||
public long TenantId { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user