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

33 lines
1.1 KiB
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 ItemDetail
{
[Key]
public int InventoryId { get; set; }
public decimal QtyIn { get; set; }
public decimal QtyOut { get; set; }
public decimal QtyOnHand { get; set; }
public string? UserId { get; set; }
public string? ItemName { get; set; }
public string? ItemDescription { get; set; }
public string? LotNo { get; set; }
public string? LotTypeName { get; set; }
public string? ItemCategoryName { get; set; }
public bool IsActive { get; set; }
public long ItemNo { get; set; }
public string? StatusName { get; set; }
public bool IsCommon { get; set; }
public string? PackagingTypeName { get; set; }
public string? UOMName { get; set; }
public string? ItemColorName { get; set; }
public string? ItemAttachPath { get; set; }
}
}