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

32 lines
1.0 KiB
C#

using Microsoft.Data.SqlClient;
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 CustomPO
{
[Key]
public long PRDetailsId { get; set; }
public byte POTypeId { get; set; }
public string? PONo { get; set; }
public long ItemNo { get; set; }
public string? ItemSpecs { get; set; }
public string? ItemName { get; set; }
public decimal Price { get; set; }
public string? EmailAddress { get; set; }
public string? SupplierName { get; set; }
public string? Manufacturer { get; set; }
public int Qty { get; set; }
public long CanvassDetailId { get; set; }
public long CanvassId { get; set; }
public long PODetailId { get; set; }
public DateTime DateNeeded { get; set; }
public string? Message { get; set; }
}
}