NonInventPurchasingSystem/CPRNIMS.Infrastructure/Entities/PO/POHeader.cs
2026-02-19 17:23:28 +08:00

37 lines
1.3 KiB
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 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 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 PODId { get; set; }
public byte POTypeId { get; set; }
public byte IncoTermsId { get; set; }
}
}