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 POHeader { [Key] public long POId { get; set; } public string? PONo { get; set; } public int SupplierId { get; set; } public string? SupplierName { get; set; } public DateTime DeliveryDate { get; set; } public string? DeliverTo { get; set; } public DateTime? ProfInvoiceDate { get; set; } public string? ProfInvoiceNo { get; set; } public string? CurrencyName { get; set; } public string? PaymentTerms { get; set; } public string? Remarks { get; set; } public decimal Discount { get; set; } public decimal GrossAmountUSD { get; set; } public decimal FinalAmountUSD { get; set; } public decimal GrossAmountPHP { get; set; } public decimal FinalAmountPHP { get; set; } public string? POTypeName { get; set; } public string? UserId { get; set; } public byte Status { get; set; } public byte PaymentTermsId { get; set; } public byte ShippingInstructionId { get; set; } public byte PODId { get; set; } public byte POTypeId { get; set; } public byte IncoTermsId { get; set; } public string? IncotermsName { get; set; } public string? CountryOrigin { get; set; } } }