23 lines
470 B
C#
23 lines
470 B
C#
using HuanMeng.DotNetCore.MultiTenant.Contract;
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HuanMeng.DotNetCore.MultiTenant
|
|
{
|
|
/// <summary>
|
|
/// 基本多租户实体类
|
|
/// </summary>
|
|
public class MultiTenantEntity : IMultiTenantEntity
|
|
{
|
|
/// <summary>
|
|
/// 租户ID
|
|
/// </summary>
|
|
public virtual Guid TenantId { get; set; }
|
|
|
|
}
|
|
}
|