39 lines
1.4 KiB
C#
39 lines
1.4 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 ForRR
|
|
{
|
|
[Key]
|
|
public long RRDetailId { get; set; }
|
|
public long PRDetailId { get; set; }
|
|
public long ItemNo { get; set; }
|
|
public long RRId { 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 QuantityReceived { get; set; }
|
|
public decimal UnitPrice { get; set; }
|
|
public decimal GrossAmount { get; set; }
|
|
public string? ItemDescription { get; set; }
|
|
public string? UOMName { get; set; }
|
|
public string? ReceivedBy { get; set; }
|
|
public DateTime ReceivedDate { get; set; }
|
|
public string? AcknowledgeBy { get; set; }
|
|
public string? AcknowledgeDate { 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; }
|
|
}
|
|
}
|