initial commit
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
using Indotalent.Data.Abstracts;
|
||||
using Indotalent.Data.Interfaces;
|
||||
|
||||
namespace Indotalent.Data.Entities;
|
||||
|
||||
public class PayrollProcess : BaseEntity, IHasAutoNumber, IMultiTenant
|
||||
{
|
||||
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; }
|
||||
public string? TenantId { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user