Files
wcs/WCS.Model/ApiModel/PDAMatBind/GetShelfInfoByLocationCodeRequest.cs
2025-02-23 14:46:12 +08:00

20 lines
439 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model.ApiModel.PDAMatBind
{
public class GetShelfInfoByLocationCodeRequest:RequestBase
{
/// <summary>
/// 位置编码 工位编码
/// </summary>
public string LocationCode { get; set; }
/// <summary>
/// 货架编码
/// </summary>
public string ShelfCode { get; set; }
}
}