erp-platform/api/src/Erp.Platform.Domain/Entities/Tenant/Hr/Expense.cs

29 lines
827 B
C#
Raw Normal View History

2025-11-11 19:49:52 +00:00
using System;
2025-10-26 20:27:01 +00:00
using Volo.Abp.Domain.Entities.Auditing;
using Volo.Abp.MultiTenancy;
2025-11-11 19:49:52 +00:00
namespace Erp.Platform.Entities;
2025-10-26 20:27:01 +00:00
public class Expense : FullAuditedEntity<Guid>, IMultiTenant
{
public Guid? TenantId { get; set; }
public Guid? EmployeeId { get; set; }
public Employee Employee { get; set; }
public string Category { get; set; }
public decimal Amount { get; set; }
public Guid? CurrencyId { get; set; }
public DateTime RequestDate { get; set; }
public string Description { get; set; }
public string Project { get; set; }
public string Status { get; set; }
public Guid? ApproverId { get; set; }
public Employee Approver { get; set; }
public DateTime? ApprovalDate { get; set; }
public string RejectionReason { get; set; }
public string Notes { get; set; }
}
2025-11-11 19:49:52 +00:00