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

42 lines
1.6 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 PRTracking
{
[Key]
public long TrackingStatusId { get; set; }
public long PRDetailId { get; set; }
public string? PRCreatedDate { get; set; }
public string? PRApprover1 { get; set; }
public string? PRApprover2 { get; set; }
public string? CanvassCreatedDate { get; set; }
public string? CanvassSubmitedDate { get; set; }
public string? SuppBidDate { get; set; }
public string? CanvassApprovedDate { get; set; }
public string? POPreparationDate { get; set; }
public string? PoCreatedDate { get; set; }
public string? PoApprovedDate { get; set; }
public string? POForwardedDate { get; set; }
public string? ItemArrivedDate { get; set; }
public string? ReceivedDate { get; set; }
public string? ItemDescription { get; set; }
public string? ItemName { get; set; }
public string? RequestedBy { get; set; }
public long ItemNo { get; set; }
public long PRNo { get; set; }
public decimal Qty { get; set; }
public DateTime DateNeeded { get; set; }
public string? UOMName { get; set; }
public string? ItemCategoryName { get; set; }
public string? PONumber { get; set; }
public string? POTypeName { get; set; }
public string? ItemAttachPath { get; set; }
}
}