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.Common
|
{
|
public class SavePickEntity
|
{
|
//当前分拣单
|
public TN_WM_SORTING_LISTEntity CurrentSorting { get; set; }
|
//分拣单库区
|
public AutoBomStockAreaEntity SortingArea { get; set; }
|
//一单一波所属出库单
|
public TN_WM_OUT_MSTEntity OutMst { get; set; }
|
//分拣结果
|
public List<TN_WM_SORTING_RESULTEntity> SortingResult { get; set; }
|
//订单拣货关联(边拣边播用)
|
public List<TN_WM_ORDER_SORTING_RELEntity> OrderSortingRel { get; set; }
|
//托盘物料关联
|
public List<TN_WM_B_TRAY_ITEM_MSTEntity> TrayItemList { get; set; }
|
//分拣明细
|
public List<TN_WM_SORTING_LOCATIONEntity> SortingLocation { get; set; }
|
//托盘货位关联
|
public TN_WM_B_TRAY_LOCATIONEntity TrayLocation { get; set; }
|
//库区量
|
public List<TN_WM_B_AREA_QTYEntity> AreaQtyList { get; set; }
|
public TN_WM_TASKEntity CurrentTrayTask { get; set; }
|
//波次是否拣完
|
public bool WavePicked { get; set; }
|
//分拣单是否拣完
|
public bool SortingPicked { get; set; }
|
//是否外销
|
public bool IsWx { get; set; }
|
//分拣单号
|
public string SortingNo { get; set; }
|
//波次号
|
public string WaveNo { get; set; }
|
//周转箱
|
public string BoxNo { get; set; }
|
//下一位置
|
public string EndBit { get; set; }
|
//当前位置
|
public string StartBit { get; set; }
|
}
|
}
|