1
pulg
2025-05-14 5a640911f7e7ef3a003775993f077e1a0e9ac130
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
using HH.WCS.Hexafluo.wms;
using HH.WCS.SJML.Entitys;
using System.Collections.Generic;
 
namespace HH.WCS.SJML.Dto
{
    /// <summary>
    /// 完工回报参数
    /// </summary>
    public class ExecuteStateParaDto
    {
        public ExecuteStateParaDto()
        {
            startStockArea = new TN_AreaEntitys();
            endStockArea = new TN_AreaEntitys();
        }
 
        /// <summary>
        /// 任务状态
        /// </summary>
        public string taskState { get; set; }
 
        /// <summary>
        /// 任务
        /// </summary>
        public WMSTask transportTask { get; set; }
        /// <summary>
        /// 主任务
        /// </summary>
        public WMSTask transportTaskZ { get; set; }
        /// <summary>
        /// 查询全部Src任务
        /// </summary>
        public List<WMSTask> transportTaskSrc { get; set; }
        /// <summary>
        /// 双箭主任务
        /// </summary>
        public WMSTask ZtransportTask { get; set; }
        /// <summary>
        /// 起点托盘货位
        /// </summary>
        public LocCntrRel startTrayLocation { get; set; }
 
        /// <summary>
        /// 终点托盘货位
        /// </summary>
        public LocCntrRel endTrayLocation { get; set; }
 
        /// <summary>
        /// 起点货位扩展表
        /// </summary>
        public Location startIsCurrentTask { get; set; }
 
        /// <summary>
        /// 终点货位扩展表
        /// </summary>
        public Location endIsCurrentTask { get; set; }
 
        /// <summary>
        /// 托盘物料表
        /// </summary>
        public List<CntrItemRel> trayItemMsts { get; set; }
 
        /// <summary>
        /// 开始库区
        /// </summary>
        public TN_AreaEntitys startStockArea { get; set; }
 
        /// <summary>
        /// 终点库区
        /// </summary>
        public TN_AreaEntitys endStockArea { get; set; }
 
        /// <summary>
        /// 结果
        /// </summary>
        public OperateResult result { get; set; }
        public string Name { get; set; }
        /// <summary>
        /// 作业流程
        /// </summary>
        public TN_WorkFlowEntitys WorkFlows { get; set; }
 
        /// <summary>
        /// 接驳位空托缓存表
        /// </summary>
        public JbTrayNumberEntitys JbTray { get; set; }
    }
 
}