Files
wcs/WCS.Model/ApiModel/MatInventoryDetail/GetMatInventorySummaryRequest.cs

20 lines
365 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model.ApiModel.MatInventoryDetail
{
public class GetMatInventorySummaryRequest
{
public string MatCode { get; set; }
public string MatName { get; set; }
public string MatBatch { get; set; }
public int ShelfTypeId { get; set; }
}
}