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

29 lines
932 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.Entities.Inventory
{
public class Inventory
{
[Key]
public int InventoryId { get; set; }
public decimal QtyIn { get; set; }
public decimal QtyOut { get; set; }
public decimal QtyOnHand { get; set; }
public decimal RemainingQty { get; set; }
public string? LotNo { get; set; }
public string? UserId { get; set; }
public string? ItemName { get; set; }
public string? ItemDescription { get; set; }
public string? ItemCategoryName { get; set; }
public string? Department { get; set; }
public DateTime CreatedDate { get; set; }
public bool IsActive { get; set; }
public long ItemNo { get; set; }
}
}