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

25 lines
682 B
C#

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; }
}
}