You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
using System; using System.Collections.Generic; using System.Linq; using System.Text;
namespace ICSSoft.Entity { public class LOTStockForkLiftModel { /// <summary>
/// 叉车编号
/// </summary>
public string ForkliftCode { get; set; } /// <summary>
/// 仓库编号
/// </summary>
public string WareCode { get; set; } /// <summary>
/// 巷道号
/// </summary>
public string LaneCode { get; set; } /// <summary>
/// 任务类型【PTWY上架,RETN返仓,INTL移库,PICK出库,INVE盘点】
/// </summary>
public string TaskType { get; set; } /// <summary>
/// 托盘号
/// </summary>
public string PalletID { get; set; } /// <summary>
/// 源库位
/// </summary>
public string SourceBin { get; set; } /// <summary>
/// 目标库位
/// </summary>
public string DestBin { get; set; } } }
|