18 lines
No EOL
491 B
C#
18 lines
No EOL
491 B
C#
using System;
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
|
using Volo.Abp.MultiTenancy;
|
|
|
|
namespace Erp.Platform.Entities;
|
|
|
|
public class PlanEmployee : FullAuditedEntity<Guid>, 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; }
|
|
} |