Files
wcs/WCS.Model/ApiModel/MatDetailCurrentInfo/GetLocationInfosRequest.cs
2025-01-14 11:18:38 +08:00

20 lines
490 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model.ApiModel.MatDetailCurrentInfo
{
public class GetMatDetailCurrentInfosRequest : PageQueryRequestBase
{
public int? LocationAreaId { get; set; }
public string LocationCode { get; set; }
public int? ShelfTypeId { get; set; }
public string ShelfCode { get; set; }
public string MatCode { get; set; }
public string MatName { get; set; }
}
}