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
91
92
93
94
95
using HH.WCS.Hexafluo.wms;
using HH.WCS.SJML.Dto;
using HH.WCS.SJML.Entitys;
using System.Collections.Generic;
 
namespace HH.WCS.SJML.InWork
{
    public class ExecuteInWorkAreaPara
    {
        public ExecuteInWorkAreaPara()
        {
            BasisResponse = OperateResult.Succeed();
            RollbackLocations = new List<string>();
            WorkAreaProEntitys = new List<TN_WorkFlowEntitys>();
            TransportEntity = new TN_WM_TRANSPORT_TASKEntity();
            IsLockLocation = false;
            TaskExecuteState = new TaskExecuteState();
        }
        public string oblectTask { get; set; }
        public int index { get; set; }
 
        /// <summary>
        /// 入作业区参数
        /// </summary>
        public InWorkAreaEntity InWorkAreaEntity { get; set; }
 
        /// <summary>
        /// 返回结果
        /// </summary>
        public OperateResult BasisResponse { get; set; }
 
        /// <summary>
        /// 记录回滚货位
        /// </summary>
        public List<string> RollbackLocations { get; set; }
 
        /// <summary>
        /// 工作区集合
        /// </summary>
        public List<TN_WorkFlowEntitys> WorkAreaProEntitys { get; set; }
 
        /// <summary>
        /// 转运任务
        /// </summary>
        public TN_WM_TRANSPORT_TASKEntity TransportEntity { get; set; }
 
        /// <summary>
        /// 是否手动锁定了货位
        /// </summary>
        public bool IsLockLocation { get; set; }
 
        /// <summary>
        /// 业务执行结果
        /// </summary>
        public TaskExecuteState TaskExecuteState { get; set; }
 
        /// <summary>
        /// 起始库区
        /// </summary>
        public TN_AreaEntitys StartStockAreaEntity { get; set; }
 
        /// <summary>
        /// 起始货位扩展表
        /// </summary>
        public Location StartLocationExt { get; set; }
 
        /// <summary>
        /// 终点货位扩展表
        /// </summary>
        public Location EndLocationEntity { get; set; }
 
 
        /// <summary>
        /// 结束库区
        /// </summary>
        public TN_AreaEntitys EndStockAreaEntity { 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; }
 
    }
}