erp-platform/api/src/Erp.Platform.Domain/Entities/Tenant/Maintenance/PlanEmployee.cs

18 lines
473 B
C#
Raw Normal View History

2025-11-20 14:55:13 +00:00
using System;
using Volo.Abp.Domain.Entities.Auditing;
using Volo.Abp.MultiTenancy;
namespace Erp.Platform.Entities;
2025-12-02 13:03:18 +00:00
public class PlanEmployee : FullAuditedEntity<Guid>, IMultiTenant
2025-11-20 14:55:13 +00:00
{
public Guid? TenantId { get; set; }
2025-12-02 13:03:18 +00:00
public Guid PlanId { get; set; }
public Plan Plan { get; set; }
2025-11-20 14:55:13 +00:00
public Guid EmployeeId { get; set; }
public DateTime StartDate { get; set; }
public DateTime EndDate { get; set; }
public string Description { get; set; }
}