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

31 lines
1013 B
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 ApprovedPR
{
[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? Department { 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 decimal Qty { get; set; }
public string? ApprovedBy { get; set; }
public string? AttestedBy { get; set; }
public string? CreatedBy { get; set; }
public int RemainingDays { get; set; }
}
}