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

30 lines
687 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model.ApiModel.PDAMatBind
{
public class GetShelfInfoByLocationReturnData
{
/// <summary>
/// 工位ID
/// </summary>
public int LocationId { get; set; } = 0;
/// <summary>
/// 位置编码 工位编码
/// </summary>
public string LocationCode { get; set; } = string.Empty;
/// <summary>
/// 货架ID
/// </summary>
public int? ShelfId { get; set; } = 0;
/// <summary>
/// 货架编码
/// </summary>
public string ShelfCode { get; set;} = string.Empty;
}
}