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 CreatedPOPerSupId { [Key] public long PRDetailsId { get; set; } public long PRNo { get; set; } public string? StringPRNo { get; set; } public string? PONo { get; set; } public decimal UnitPrice { get; set; } public decimal TotalAmount { get; set; } public string? ItemCategoryName { get; set; } public string? UserId { get; set; } public string? ItemName { get; set; } public string? ItemDescription { get; set; } public string? UOMName { get; set; } public long ItemNo { get; set; } public decimal Qty { get; set; } public string? Remarks { get; set; } public string? Department { get; set; } public string? SupplierName { get; set; } public string? SupplierAddress { get; set; } public string? EmailAddress { get; set; } public string? ContactNo { get; set; } public string? ContactPerson { get; set; } public string? Terms { get; set; } public string? RequestedBy { get; set; } public string? PurchaseBy { get; set; } public string? Purposes { get; set; } public bool IsApproved { get; set; } public bool IsPrepared { get; set; } public string? PORemarks { get; set; } public DateTime DeliveryDate { get; set; } public DateTime CurrentDate { get; set; } public DateTime CreatedDate { get; set; } public DateTime ProfInvoiceDate { get; set; } public string? PortOfDischarge { get; set; } public string? PaymentTerms { get; set; } public byte ShippingInstructionId { get; set; } public string? DeliverTo { get; set; } public string? IncoTerms { get; set; } public string? ProfInvoiceNo { get; set; } public string? DocRequirements { get; set; } public string? AmountInWords { get; set; } public decimal Amount { get; set; } public string? CountryOrigin { get; set; } } }