using System.ComponentModel;
namespace DS.Module.Core.Data;
///
/// 租户实体基类
///
public abstract class BaseTenantModel : BaseModel, ITenantId
{
///
/// 主键ID
///
[Description("主键ID")]
[SqlSugar.SugarColumn(IsPrimaryKey = true, Length = 100, ColumnDescription = "主键ID")]
public TKey Id { get; set; }
///
/// 租户Id
///
[SqlSugar.SugarColumn(ColumnDescription = "租户Id", IsOnlyIgnoreUpdate = true)]
public long TenantId { get; set; } = 0;
}