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

24 lines
655 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("CentralPONo")]
public class CentralPONo
{
[Key]
public int CPONoId { get; set; }
public string? PONo { get; set; }
public byte POTypeId { get; set; }
public byte AppsId { get; set; }
public string? CreatedBy { get; set; }
public DateTime CreatedDate { get; set; }
public bool IsActive { get; set; }
}
}