Files
wcs/WCS.Model/ApiModel/PDAMatBind/BindMatDetailRequest.cs
2025-03-24 19:00:32 +08:00

63 lines
1.4 KiB
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model.ApiModel.PDAMatBind
{
public class BindMatDetailRequest : RequestBase
{
/// <summary>
/// 工位ID
/// </summary>
public int LocationId { get; set; }
/// <summary>
/// 位置编码 工位编码
/// </summary>
public string LocationCode { get; set; }
/// <summary>
/// 货架ID
/// </summary>
public int ShelfId { get; set; }
/// <summary>
/// 货架编码
/// </summary>
public string ShelfCode { get; set;}
/// <summary>
/// 物料基础数据Id
/// </summary>
public int MatBaseInfoId { get; set; }
/// <summary>
/// 物料编码
/// </summary>
public string MatCode { get; set;}
/// <summary>
/// 物料批次
/// </summary>
public string MatBatch{ get; set; }
/// <summary>
/// 物料数量
/// </summary>
public int Qty { get; set; }
public int NeedLocationAreaId { get; set; } = 0;
public string NeedLocationAreaName { get; set; }
public int NeedShelfTypeId { get; set; }
public string NeedShelfTypeName { get; set; }
public int SendBackLocationAreaId { get; set; }
public string SendBackLocationAreaName { get; set; }
}
}