36 lines
1.2 KiB
C#
36 lines
1.2 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 IncomingShipmentDto
|
|
{
|
|
[Key]
|
|
public long POId { get; set; }
|
|
public string? PONo { get; set; }
|
|
public string? ProfInvoiceNo { get; set; }
|
|
public DateTime ProfInvoiceDate { get; set; }
|
|
public string? POTypeName { get; set; }
|
|
public DateTime DeliveryDate { get; set; }
|
|
public string? SupplierName { get; set; }
|
|
public string? CreatedBy { get; set; }
|
|
public string? PaymentTerms { get; set; }
|
|
public string? EmailAddress { get; set; }
|
|
public decimal TotalAmount { get; set; }
|
|
public string? CurrencyName { get; set; }
|
|
public string? Signature { get; set; }
|
|
public string? Subject { get; set; }
|
|
public string? CC { get; set; }
|
|
public string? Password { get; set; }
|
|
public string? Server { get; set; }
|
|
public string? AggreItemName { get; set; }
|
|
public string? AggreItemNo { get; set; }
|
|
public string? AggreQty { get; set; }
|
|
public string? UserName { get; set; }
|
|
}
|
|
}
|