using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CPRNIMS.Infrastructure.Entities.Inventory { public class LotQtyByItem { [Key] public int InventoryId { get; set; } public decimal QtyOut { get; set; } public decimal QtyIn { get; set; } public int LotId { get; set; } public decimal QtyOnHand { get; set; } public string? UserId { get; set; } public string? LotName { get; set; } public string? LotTypeName { get; set; } public long ItemNo { get; set; } } }