NonInventPurchasingSystem/CPRNIMS.Infrastructure/Entities/Purchasing/RR.cs
2026-04-21 11:59:21 +08:00

28 lines
861 B
C#

using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.Entities.Purchasing
{
[Keyless]
public class RR
{
public long RRId { get; set; }
public long RRNo { get; set; }
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 byte POTypeId { get; set; }
}
}