38 lines
1.3 KiB
C#
38 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.Purchasing
|
|
{
|
|
public class ReceivingDetail
|
|
{
|
|
[Key]
|
|
public long PRDetailsId { get; set; }
|
|
public long ItemNo { get; set; }
|
|
public long RRNo { get; set; }
|
|
public long PRNo { get; set; }
|
|
public byte POTypeId { get; set; }
|
|
public string? PONo { get; set; }
|
|
public decimal Quantity { get; set; }
|
|
public decimal RemainingQty { get; set; }
|
|
public decimal QuantityReceived { get; set; }
|
|
public decimal UnitPrice { get; set; }
|
|
public decimal VatRate { get; set; }
|
|
public decimal TotalAmount { get; set; }
|
|
public string? ItemDescription { get; set; }
|
|
public string? UOMName { get; set; }
|
|
public string? ItemCategoryName { get; set; }
|
|
public string? EmailAddress { get; set; }
|
|
public string? SupplierName { get; set; }
|
|
public string? CurrencyName { get; set; }
|
|
public string? PaymentTerms { get; set; }
|
|
public string? POTypeName { get; set; }
|
|
public string? Remarks { get; set; }
|
|
public string? DRNo { get; set; }
|
|
public byte DocTypeId { get; set; }
|
|
}
|
|
}
|