15 lines
273 B
C#
15 lines
273 B
C#
|
|
using SqlSugar;
|
|||
|
|
|
|||
|
|
namespace DouyinApi.Model.Tenants;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 租户模型接口
|
|||
|
|
/// </summary>
|
|||
|
|
public interface ITenantEntity
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 租户Id
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(DefaultValue = "0")]
|
|||
|
|
public long TenantId { get; set; }
|
|||
|
|
}
|