erp-platform/api/src/Erp.Platform.Domain/Entities/Tenant/SupplyChain/DeliveryTerm.cs

25 lines
576 B
C#
Raw Normal View History

2025-12-01 07:31:38 +00:00
using System;
using System.Collections.Generic;
using Volo.Abp.Domain.Entities.Auditing;
using Volo.Abp.MultiTenancy;
namespace Erp.Platform.Entities;
public class DeliveryTerm : FullAuditedEntity<string>, IMultiTenant
2025-12-01 07:31:38 +00:00
{
public Guid? TenantId { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public bool IsActive { get; set; }
public ICollection<Quotation> Quotations { get; set; }
2025-12-04 14:52:09 +00:00
public ICollection<SalesOrder> SalesOrders { get; set; }
public DeliveryTerm(string id)
{
Id = id;
}
2025-12-01 07:31:38 +00:00
}