NonInventPurchasingSystem/CPRNIMS.Infrastructure/Entities/Receiving/RRDetail.cs
2026-01-20 07:44:30 +08:00

42 lines
1.5 KiB
C#

using CPRNIMS.Infrastructure.Entities.Purchasing;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.Entities.Receiving
{
public class RRDetail
{
[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 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? Address { 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 string? ReceivedBy { get; set; }
public string? AcknowledgeBy { get; set; }
public byte DocTypeId { get; set; }
public DateTime CreatedDate { get; set; }
}
}