You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
338 B


using SqlSugar;
namespace GDZZ.Core.Entity;
/// <summary>
/// 自定义租户基类实体
/// </summary>
public abstract class DBEntityTenant : DEntityBase
{
/// <summary>
/// 租户id
/// </summary>
[SugarColumn(ColumnDescription = "租户id", IsNullable = true)]
public virtual long? TenantId { get; set; }
}