NonInventPurchasingSystem/CPRNIMS.Infrastructure/Entities/PO/PRPOSummaryItem.cs
2026-01-20 07:44:30 +08:00

30 lines
966 B
C#

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; }
}
}