29 lines
936 B
C#
29 lines
936 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.Dto.Inventory.Response
|
|
{
|
|
public class InventoryByIdResponse
|
|
{
|
|
[Key]
|
|
public int InventoryId { get; set; }
|
|
public decimal QtyIn { get; set; }
|
|
public decimal QtyOut { get; set; }
|
|
public decimal QtyOnHand { get; set; }
|
|
public string? LotNo { get; set; }
|
|
public string? ProjectCode { 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 long ItemNo { get; set; }
|
|
public long PRNo { get; set; }
|
|
}
|
|
}
|