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.

25 lines
575 B

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