using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CPRNIMS.Infrastructure.Entities.PO { public class PRPOSummaryItem { public long PRDetailsId { get; set; } public DateTime PRDate { get; set; } public string? PONo { get; set; } public string? PODate { get; set; } public decimal POQty { get; set; } public string? RRDate { get; set; } public long RRNo { get; set; } public decimal QuantityReceived { get; set; } public string? Department { get; set; } public string? ItemName { get; set; } public short Status { get; set; } public string? StatusName { get; set; } public long ItemNo { get; set; } public decimal Qty { get; set; } public string? UOMName { get; set; } public long PRNo { get; set; } } }