NonInventPurchasingSystem/CPRNIMS.Infrastructure/Entities/Purchasing/RemovedPR.cs

34 lines
1.1 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 RemovedPR
{
[Key]
public long PRDetailsId { get; set; }
public long PRNo { get; set; }
public long PRId { get; set; }
public long ItemNo { get; set; }
public string? ItemName { get; set; }
public string? ItemDescription { get; set; }
public string? Department { get; set; }
public string? ItemCategoryName { get; set; }
public string? Remarks { get; set; }
public string? StatusName { get; set; }
public DateTime DateNeeded { get; set; }
public DateTime CreatedDate { get; set; }
public string? AttestedDate { get; set; }
public string? ApprovedDate { get; set; }
public string? UOMName { get; set; }
public decimal Qty { get; set; }
public string? ApprovedBy { get; set; }
public string? AttestedBy { get; set; }
public string? CreatedBy { get; set; }
}
}