using System; using Volo.Abp.Domain.Entities.Auditing; using Volo.Abp.MultiTenancy; namespace Erp.Platform.Entities; public class PlanEmployee : FullAuditedEntity, IMultiTenant { public Guid? TenantId { get; set; } public Guid PlanWizardId { get; set; } public PlanWizard PlanWizard { get; set; } public Guid EmployeeId { get; set; } public DateTime StartDate { get; set; } public DateTime EndDate { get; set; } public string Description { get; set; } }