NonInventPurchasingSystem/CPRNIMS.Infrastructure/Entities/Inventory/RequestItem.cs
2026-01-20 07:44:30 +08:00

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; }
}
}