2025-12-08 21:56:32 +00:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
|
|
|
|
using Volo.Abp.MultiTenancy;
|
|
|
|
|
|
|
|
|
|
namespace Erp.Platform.Entities;
|
|
|
|
|
|
2025-12-11 13:59:44 +00:00
|
|
|
public class PaymentStatus : FullAuditedEntity<string>, IMultiTenant
|
2025-12-08 21:56:32 +00:00
|
|
|
{
|
|
|
|
|
public Guid? TenantId { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
public bool IsActive { get; set; }
|
|
|
|
|
|
|
|
|
|
public ICollection<Invoice> Invoices { get; set; }
|
2025-12-11 13:59:44 +00:00
|
|
|
|
|
|
|
|
public PaymentStatus(string id)
|
|
|
|
|
{
|
|
|
|
|
Id = id;
|
|
|
|
|
}
|
2025-12-08 21:56:32 +00:00
|
|
|
}
|