using HH.WMS.Entitys.Basic;
using HH.WMS.Entitys.Entitys;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HH.WMS.Entitys.External
{
///
/// 完工回报参数
///
public class ExecuteStateParaDto
{
public ExecuteStateParaDto()
{
}
///
/// 任务状态
///
public string taskState { get; set; }
///
/// 任务
///
public TN_WM_TASKEntity transportTask { get; set; }
///
/// 起点托盘货位
///
public TN_WM_B_TRAY_LOCATIONEntity startTrayLocation { get; set; }
///
/// 终点托盘货位
///
public TN_WM_B_TRAY_LOCATIONEntity endTrayLocation { get; set; }
///
/// 起点货位扩展表
///
public TN_WM_LOCATION_EXTEntity startIsCurrentTask { get; set; }
///
/// 终点货位扩展表
///
public TN_WM_LOCATION_EXTEntity endIsCurrentTask { get; set; }
///
/// 托盘物料主表
///
public List trayItemMsts { get; set; }
///
/// 开始库区
///
public AutoBomStockAreaEntity startStockArea { get; set; }
///
/// 终点库区
///
public AutoBomStockAreaEntity endStockArea { get; set; }
///
/// 结果
///
public OperateResult result { get; set; }
}
}