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 RequestItemDetail { [Key] public long RequestItemId { get; set; } public int InventoryId { get; set; } public decimal QtyRequest { get; set; } public decimal QtyIn { get; set; } public decimal QtyOut { get; set; } public decimal QtyOnHand { get; set; } public decimal QtyReceived { get; set; } public long ItemNo { get; set; } public string? LotNo { get; set; } public string? ItemName { get; set; } public string? UOMName { get; set; } public string? ItemColorName { get; set; } public string? ItemDescription { get; set; } public string? ItemCategoryName { get; set; } public string? ItemAttachPath { get; set; } public string? UserId { get; set; } public string? StatusName { get; set; } public bool IsActive { get; set; } public string? CreatedDateStr { get; set; } } }