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

28 lines
880 B
C#

using CPRNIMS.Infrastructure.Entities.Common;
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 PRList : CommonProperties
{
[Key]
public long PRId { get; set; }
public long PRNo { get; set; }
public string? Department { get; set; }
public string? AttestedBy { get; set; }
public string? ApprovedBy { get; set; }
public short Status { get; set; }
public string? StatusName { get; set; }
public long ItemNo { get; set; }
public string? NewPRNo { get; set; }
public DateTime DateNeeded { get; set; }
public string? AggreItemName { get; set; }
public string? Remarks { get; set; }
}
}