11
pulg
2025-06-05 28bea7128b8c24a6a664e880f1425e1fa24b9b5f
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
using HH.WCS.Hexafluo.wms;
using HH.WCS.SJML.Dto;
using HH.WCS.SJML.Entitys;
using System.Collections.Generic;
 
namespace HH.WCS.SJML.OutWork
{
    /// <summary>
    /// 出作业区变量
    /// </summary>
    public class ExecuteOutWorkAreaPara
    {
        public ExecuteOutWorkAreaPara()
        {
            OutWorkAreaEntity = new OutWorkAreaEntity();
            TransportList = new List<TN_WM_TRANSPORT_TASKEntity>();
            BasisResponse = OperateResult.Succeed();
            RollLocation = string.Empty;
            RollLocations = new List<string>();
            StartAreaClass = string.Empty;
            WorkAreaProEntitys = new List<TN_WorkFlowEntitys>();
            IsControl = false;
        }
        public string objectTask { get; set; }
        /// <summary>
        /// 索引
        /// </summary>
        public int index { get; set; }
 
        /// <summary>
        /// 出作业区参数
        /// </summary>
        public OutWorkAreaEntity OutWorkAreaEntity { get; set; }
 
        /// <summary>
        /// 出库的托盘信息
        /// </summary>
        public LocCntrRel LocCntr { get; set; }
        /// <summary>
        /// 任务列表
        /// </summary>
        public List<TN_WM_TRANSPORT_TASKEntity> TransportList { get; set; }
 
        /// <summary>
        /// 工作区集合
        /// </summary>
        public List<TN_WorkFlowEntitys> WorkAreaProEntitys { get; set; }
 
        /// <summary>
        /// 起始库区
        /// </summary>
        public TN_AreaEntitys StartStockAreaEntity { get; set; }
 
        /// <summary>
        /// 起始货位扩展表
        /// </summary>
        public Location StartLocationExt { get; set; }
 
        /// <summary>
        /// 结束库区
        /// </summary>
        public TN_AreaEntitys EndStockAreaEntity { get; set; }
 
        /// <summary>
        /// 终点货位扩展表
        /// </summary>
        public Location EndLocationExt { get; set; }
 
 
        /// <summary>
        /// 托盘对象货位实体
        /// </summary>
        public LocCntrRel TrayObjLocation { get; set; }
 
        /// <summary>
        /// 记录回滚的货位
        /// </summary>
        public List<string> RollLocations { get; set; }
 
        /// <summary>
        /// 记录回滚的货位
        /// </summary>
        public string RollLocation { get; set; }
 
 
        /// <summary>
        /// 返回结果
        /// </summary>
        public OperateResult BasisResponse { get; set; }
 
        /// <summary>
        /// 起始库区结构
        /// </summary>
        public string StartAreaClass { get; set; }
 
        /// <summary>
        /// 是否管控数量
        /// </summary>
        public bool IsControl { get; set; }
 
        /// <summary>
        /// 执行结果
        /// </summary>
        public TaskExecuteState TaskExecuteState { get; set; }
 
        /// <summary>
        /// 终点货位
        /// </summary>
        public Location EndLocationEntity { get; set; }
 
        /// <summary>
        /// 工作区
        /// </summary>
        public TN_WorkFlowEntitys WorkAreaProEntity { get; set; }
 
        /// <summary>
        /// 辅助表
        /// </summary>
        public TN_SubsidiaryEntitys WorkSubsidiary { get; set; }
 
        /// <summary>
        /// 任务
        /// </summary>
        public WMSTask TaskEntity { get; set; }
    }
}