NonInventPurchasingSystem/CPRNIMS.Infrastructure/ViewModel/Inventory/InventoryVM.cs
2026-06-15 16:41:50 +08:00

82 lines
3.4 KiB
C#

using CPRNIMS.Infrastructure.Dto.Items;
using CPRNIMS.Infrastructure.Entities.Common;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.ViewModel.Inventory
{
public class InventoryVM : CommonProperties
{
public long PRDetailsId { get; set; }
public long RRDetailId { get; set; }
public long PONo { get; set; }
public string? CreatedDateStr { get; set; }
public bool WithoutStocks { get; set; }
public int InventoryId { get; set; }
public int LotId { get; set; }
public long PODetailId { get; set; }
public byte LotTypeId { get; set; }
public string? LotName { get; set; }
public decimal QtyIn { get; set; }
public decimal QtyRequest { get; set; }
public short ReceivingStatus { get; set; }
public int DepartmentId { get; set; }
public string? Department { get; set; }
public string? ItemCategoryName { get; set; }
public string? UserId { get; set; }
public string? ItemName { get; set; }
public string? EmailAddress { get; set; }
public string? ItemDescription { get; set; }
public string? Remarks { get; set; }
public int UOMId { get; set; }
public int ItemColorId { get; set; }
public short Status { get; set; }
public string? StatusName { get; set; }
public bool IsActive { get; set; }
public bool IsCommon { get; set; }
public long ItemNo { get; set; }
public short ItemLocalId { get; set; }
public string? ItemLocalName { get; set; }
public short ItemTypeId { get; set; }
public byte PRTypeId { get; set; }
public long RequestItemId { get; set; }
public decimal QtyOut { get; set; }
public decimal QtyOnHand { get; set; }
public decimal QtyReceived { get; set; }
public decimal RemainingQty { get; set; }
public byte IsApproved { get; set; }
public byte PackagingTypeId { get; set; }
public string? ItemTypeName { get; set; }
public string? LotTypeName { get; set; }
public short ItemClassId { get; set; }
public string? ItemClassName { get; set; }
public string? UOMName { get; set; }
public string? ItemColorName { get; set; }
public long ItemAttachId { get; set; }
public string? ItemAttachPath { get; set; }
public DateTime DateNeeded { get; set; }
public long PRNo { get; set; }
public string? LotNo { get; set; }
public long CanvassDetailId { get; set; }
public long CanvassId { get; set; }
public string? StatusResponse { get; set; }
public string? Message { get; set; }
public string? DateFromST { get; set; }
public string? DateToST { get; set; }
public DateTime DateFrom { get; set; }
public DateTime DateTo { get; set; }
public bool IsSorting { get; set; }
public string? URL { get; set; }
public string SearchPRNo { get; set; } = "";
public string SearchItemName { get; set; } = "";
public string SearchDept { get; set; } = "";
public int PageNumber { get; set; } = 1;
public int PageSize { get; set; } = 10;
public byte MessCode { get; set; }
public string? SearchProjectCode { get; set; }
}
}