24 lines
720 B
C#
24 lines
720 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 ForPOApproval
|
|
{
|
|
[Key]
|
|
public long CanvassSupplierId { 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 byte POTypeId { get; set; }
|
|
}
|
|
}
|