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.
 
 
 
 
 

26 lines
595 B

using Easy.DDD.Domain.Entities;
namespace IdentityServer.DDD.Domain.Entites;
public class IdentityUserOrganizationUnit : Entity<Guid>
{
/// <summary>
/// 此实体的租户 ID。
/// </summary>
public virtual Guid? TenantId { get; protected set; }
/// <summary>
/// 用户 ID。
/// </summary>
public virtual Guid UserId { get; protected set; }
/// <summary>
/// 相关ID <see cref="OrganizationUnit"/>.
/// </summary>
public virtual Guid OrganizationUnitId { get; protected set; }
public IdentityUserOrganizationUnit()
{
}
}