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

27 lines
830 B
C#

using CPRNIMS.Infrastructure.Entities.Common;
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 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; }
}
}