namespace NPin.Framework.Upms.Domain.Shared.Dtos; public class OrganizationDto { public Guid Id { get; set; } public string Name { get; set; } = string.Empty; public string Code { get; set; } = string.Empty; public string? Remark { get; set; } /// /// 负责人ID /// public Guid LeaderId { get; set; } /// /// 负责人名称,仅用户展示,不存储 /// public string Leader { get; set; } /// /// 父节点 ID /// public Guid ParentId { get; set; } public bool IsDeleted { get; set; } public DateTime CreationTime { get; } = DateTime.Now; public Guid? CreatorId { get; set; } public DateTime? LastModificationTime { get; set; } public Guid? LastModifierId { get; set; } public int OrderNum { get; set; } public bool IsEnabled { get; set; } }