Spaces:
Sleeping
Sleeping
File size: 558 Bytes
13240d3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | namespace BakeryErp.Domain.Entities;
public sealed class InventoryTransaction : BaseEntity
{
public string TransactionNumber { get; set; } = string.Empty;
public Guid WarehouseId { get; set; }
public Guid ItemId { get; set; }
public InventoryTransactionType TransactionType { get; set; }
public decimal Quantity { get; set; }
public string Unit { get; set; } = string.Empty;
public DateTime OccurredAt { get; set; } = DateTime.UtcNow;
public string? SourceDocumentNumber { get; set; }
public string? Note { get; set; }
}
|