using System; using Volo.Abp.Domain.Entities.Auditing; using Volo.Abp.MultiTenancy; namespace Erp.Platform.Entities; public class PayrollItem : FullAuditedEntity, IMultiTenant { public Guid? TenantId { get; set; } public Guid PayrollItemId { get; set; } public Payroll Payroll { get; set; } public string Name { get; set; } public decimal Amount { get; set; } public string ItemType { get; set; } // "Allowance" or "Deduction" public bool? Taxable { get; set; } public bool? Mandatory { get; set; } }