using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ICSSoft.Entity
{
public class ForkLiftCallBackModel
{
///
///叉车编号
///
public string ForkliftCode { get; set; }
///
/// 仓库编号
///
public string WareCode { get; set; }
///
/// 巷道
///
public string LaneCode { get; set; }
///
/// 任务编号
///
public string TaskID { get; set; }
///
/// 任务类型【PTWY上架,RETN返仓,INTL移库,PICK出库,INVE盘点】
///
public string TaskType { get; set; }
///
/// 托盘号
///
public string PalletID { get; set; }
///
/// 源地址
///
public string SourceBin { get; set; }
///
/// 目标地址
///
public string DestBin { get; set; }
///
/// 任务下发时间
///
public DateTime DownTime { get; set; }
///
/// 任务状态
///
public string Status { get; set; }
}
}