29 lines
906 B
C#
29 lines
906 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 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; }
|
|
}
|
|
}
|