zhao
2021-07-19 8347f2fbddbd25369359dcb2da1233ac48a19fdc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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; }
    }
}