NonInventPurchasingSystem/CPRNIMS.Infrastructure/Entities/Purchasing/PRDetails.cs
2026-06-18 16:51:31 +08:00

31 lines
1007 B
C#

using CPRNIMS.Infrastructure.Entities.Common;
using CPRNIMS.Infrastructure.Entities.Items;
using CPRNIMS.Infrastructure.ViewModel.Items;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.Entities.Purchasing
{
[Table("PRDetails")]
public class PRDetails
{
[Key]
public long PRDetailsId { get; set; }
public long PRId { get; set; }
public string ItemName { get; set; }=string.Empty;
public string ItemDescription { get; set; } = string.Empty;
public short Status { get; set; }
public bool IsActive { get; set; }
public long ItemNo { get; set; }
public decimal Qty { get; set; }
public bool IsSearched { get; set; }
public PR? PRs { get; set; }
public ItemCategory? ItemCategory { get; set; }
}
}