initial commit

This commit is contained in:
2026-07-21 14:22:06 +07:00
commit 2d7959f202
572 changed files with 45295 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
using Indotalent.Data.Abstracts;
using Indotalent.Data.Interfaces;
namespace Indotalent.Data.Entities;
public class PayrollDetail : BaseEntity, IMultiTenant
{
public string? PayrollProcessId { get; set; }
public PayrollProcess? PayrollProcess { get; set; }
public string? EmployeeId { get; set; }
public Employee? Employee { get; set; }
public string? EmployeeCode { get; set; }
public string? EmployeeName { get; set; }
public decimal BasicSalary { get; set; }
public decimal TotalIncome { get; set; }
public decimal TotalDeduction { get; set; }
public decimal TakeHomePay { get; set; }
public virtual ICollection<PayrollComponent> Components { get; set; } = new List<PayrollComponent>();
public string? TenantId { get; set; }
}