using Fengling.Platform.Domain.AggregatesModel.TenantAggregate; using Microsoft.AspNetCore.Identity; namespace Fengling.Platform.Domain.AggregatesModel.UserAggregate; public class ApplicationUser : IdentityUser { public string? RealName { get; set; } public string? Phone { get; set; } public TenantInfo TenantInfo { get; set; } = null!; public DateTime CreatedTime { get; set; } = DateTime.UtcNow; public DateTime? UpdatedTime { get; set; } public bool IsDeleted { get; set; } }