25 lines
746 B
C#
25 lines
746 B
C#
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;
|
|
using static System.Runtime.InteropServices.JavaScript.JSType;
|
|
|
|
namespace CPRNIMS.Infrastructure.Entities.Inventory
|
|
{
|
|
[Table("RequestItems")]
|
|
public class RequestItem
|
|
{
|
|
[Key]
|
|
public long RequestItemId { get; set; }
|
|
public int InventoryId { get; set; }
|
|
public decimal QtyRequest { get; set; }
|
|
public decimal QtyReceived { get; set; }
|
|
public string? UserId { get; set; }
|
|
public short Status { get; set; }
|
|
public bool IsActive { get; set; }
|
|
}
|
|
}
|