jt
2021-06-10 5d0d028456874576560552f5a5c4e8b801786f11
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
using HH.WMS.Common.Response;
using HH.WMS.Entitys.Autobom;
using HH.WMS.Entitys.Basic;
using HH.WMS.Entitys.External;
using HH.WMS.Entitys.Tzlj;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WMS.Common.External
{
    /// <summary>
    /// 入作业区变量
    /// </summary>
    public class ExecuteInWorkAreaPara
    {
        public ExecuteInWorkAreaPara()
        {
            BasisResponse = BasisResponse.Normal();
            RollbackLocations = new List<string>();
            WorkAreaProEntitys = new List<TN_AB_B_WORK_AREA_PROEntity>();
            TransportEntity = new TN_WM_TRANSPORT_TASKEntity();
            IsLockLocation = false;
            TaskExecuteState = new TaskExecuteState();
        }
 
        public int index { get; set; }
 
        /// <summary>
        /// 入作业区参数
        /// </summary>
        public InWorkAreaEntity InWorkAreaEntity { get; set; }
        /// <summary>
        /// 记录回滚货位
        /// </summary>
        public List<string> RollbackLocations { get; set; }
        /// <summary>
        /// 工作区集合
        /// </summary>
        public List<TN_AB_B_WORK_AREA_PROEntity> WorkAreaProEntitys { get; set; }
        /// <summary>
        /// 转运任务
        /// </summary>
        public TN_WM_TRANSPORT_TASKEntity TransportEntity { get; set; }
        /// <summary>
        /// 返回结果
        /// </summary>
        public BasisResponse BasisResponse { get; set; }
        /// <summary>
        /// 错误代码  程序异常 1000  巨星业务检查异常1001  无法计算到可用货位1002
        /// </summary>
        public string errorCode { get; set; }
        /// <summary>
        /// 起始库区
        /// </summary>
        public AutoBomStockAreaEntity StartStockAreaEntity { get; set; }
        /// <summary>
        /// 结束库区
        /// </summary>
        public AutoBomStockAreaEntity EndStockAreaEntity { get; set; }
        /// <summary>
        /// 起始货位
        /// </summary>
        public AutoBomLocationEntity StartLocationEntity { get; set; }
        /// <summary>
        /// 终点货位
        /// </summary>
        public AutoBomLocationEntity EndLocationEntity { get; set; }
        /// <summary>
        /// 起始货位扩展表
        /// </summary>
        public TN_WM_LOCATION_EXTEntity StartLocationExt { get; set; }
        /// <summary>
        /// 终点货位扩展表
        /// </summary>
        public TN_WM_LOCATION_EXTEntity EndLocationExt { get; set; }
        /// <summary>
        /// 是否手动锁定了货位
        /// </summary>
        public bool IsLockLocation { get; set; }
        /// <summary>
        /// 业务执行结果
        /// </summary>
        public TaskExecuteState TaskExecuteState { get; set; }
 
        /// <summary>
        /// 托盘信息表
        /// </summary>
        public TN_WM_B_TRAY_INFOEntity TrayInfo { get; set; }
 
        /// <summary>
        /// 是否是并笼
        /// </summary>
        public bool IsCombineCage { get; set; }
 
 
        /// <summary>
        /// MES实体 (隆基项目)
        /// </summary>
        public MesStackTrayItemDto mesStackTrayItemDto { get; set; }
    }
}