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

22 lines
658 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.Purchasing
{
public class ItemWithoutSupplier
{
[Key]
public long PRDetailsId { get; set; }
public long PRNo { get; set; }
public long ItemNo { get; set; }
public string UserId { get; set; } = string.Empty;
public string ItemName { get; set; }=string.Empty;
public string ItemDescription { get; set; } = string.Empty;
public string FullName { get; set; } = string.Empty;
}
}