35 lines
1.2 KiB
C#
35 lines
1.2 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 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? 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; }
|
|
public int RemainingDays { get; set; }
|
|
}
|
|
}
|