initial commit

This commit is contained in:
2026-07-21 14:08:10 +07:00
commit f7cf118326
533 changed files with 41762 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
using Indotalent.Data.Abstracts;
using Indotalent.Data.Interfaces;
namespace Indotalent.Data.Entities;
public class PayrollProcess : BaseEntity, IHasAutoNumber
{
public string? AutoNumber { get; set; }
public string? PeriodName { get; set; }
public DateTime FromDate { get; set; }
public DateTime ToDate { get; set; }
public int TotalEmployees { get; set; }
public decimal TotalBasicSalary { get; set; }
public decimal TotalIncome { get; set; }
public decimal TotalDeduction { get; set; }
public decimal TotalGross { get; set; }
public decimal TotalTakeHomePay { get; set; }
public string? Status { get; set; }
public string? ProcessedBy { get; set; }
public DateTime ProcessedAt { get; set; }
public string? Description { get; set; }
}