Files
wcs/WCS.Model/ApiModel/MatDetailCurrentInfo/GetLocationInfosRequest.cs
hehaibing-1996 a4c02a9173 1.PDA绑定相关接口
2.货架存量 后端接口
2025-01-13 20:08:03 +08:00

20 lines
479 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model.ApiModel.StoreInfo
{
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; }
}
}