using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CPRNIMS.Infrastructure.Entities.PO { [Table("PO")] public class PO { [Key] public long POId { get; set; } public long PONo { get; set; } public bool Submit { get; set; } public bool IsActive { get; set; } public bool IsPOClosed { get; set; } public string? UserId { get; set; } public DateTime CreatedDate { get; set; } public DateTime UpdatedDate { get; set; } } }