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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
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
{
    /// <summary>
    /// 完工回报参数
    /// </summary>
    public class ExecuteStateParaDto
    {
        public ExecuteStateParaDto()
        {
        }
 
        /// <summary>
        /// 任务状态
        /// </summary>
        public string taskState { get; set; }
 
        /// <summary>
        /// 任务
        /// </summary>
        public TN_WM_TASKEntity transportTask { get; set; }
 
        /// <summary>
        /// 起点托盘货位
        /// </summary>
        public TN_WM_B_TRAY_LOCATIONEntity startTrayLocation { get; set; }
 
        /// <summary>
        /// 终点托盘货位
        /// </summary>
        public TN_WM_B_TRAY_LOCATIONEntity endTrayLocation { get; set; }
 
        /// <summary>
        /// 起点货位扩展表
        /// </summary>
        public TN_WM_LOCATION_EXTEntity startIsCurrentTask { get; set; }
 
        /// <summary>
        /// 终点货位扩展表
        /// </summary>
        public TN_WM_LOCATION_EXTEntity endIsCurrentTask { get; set; }
 
        /// <summary>
        /// 托盘物料主表
        /// </summary>
        public List<TN_WM_B_TRAY_ITEM_MSTEntity> trayItemMsts { get; set; }
 
        /// <summary>
        /// 开始库区
        /// </summary>
        public AutoBomStockAreaEntity startStockArea { get; set; }
 
        /// <summary>
        /// 终点库区
        /// </summary>
        public AutoBomStockAreaEntity endStockArea { get; set; }
 
        /// <summary>
        /// 结果
        /// </summary>
        public OperateResult result { get; set; }
    }
}