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

27 lines
838 B
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.PO
{
public class CreatedPO
{
[Key]
public long POId { get; set; }
public string? PONo { get; set; }
public string? AggrePRNo { get; set; }
public string? AggreItemNo { get; set; }
public string? AggreItemName { get; set; }
public string? ItemCategoryName { get; set; }
public string? EmailAddress { get; set; }
public string? ItemDescription { get; set; }
public string? SupplierName { get; set; }
public int SupplierId { get; set; }
public byte POTypeId { get; set; }
public bool IsManual { get; set; }
}
}