1
pulg
2025-05-27 bc3d7a828114cb9df154da869ec986cf6733a779
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
using System.Collections.Generic;
 
namespace HH.WCS.SJML.Entitys
{
    public class OutAssignEnitty
    {
        /// <summary>
        /// 设备信息 *
        /// </summary>
        public List<Device> lstDevice { get; set; }
        /// <summary>
        /// 是否锁定货位 
        /// </summary>
        public bool lockLocation
        {
            get
            {
                return _lockLocation;
            }
            set
            {
                _lockLocation = value;
            }
        }
        private bool _lockLocation = true;
 
        /// <summary>
        /// 是否锁定货位 
        /// </summary>
        private bool _needCallock = true;
 
        /// <summary>
        /// 是否锁定货位 
        /// </summary>
        public bool needCalLock
        {
            get
            {
                return _needCallock;
            }
            set
            {
                _needCallock = value;
            }
        }
        /// <summary>
        /// 出库库区优先级 *
        /// </summary>
        public List<areaPriorClass> lstAreaPrior { get; set; }
        /// <summary>
        /// 仓库编码
        /// </summary>
        public string stockCode { get; set; }
        /// <summary>
        /// 出库物料编码
        /// </summary>
        public string itemCode { get; set; }
        /// <summary>
        /// 出库托盘规格、类型
        /// </summary>
        public string traySpec { get; set; }
 
        /// <summary>
        /// 托盘类型
        /// </summary>
        public string TrayType { get; set; }
        /// <summary>
        /// 项目编码 *
        /// </summary>
        public string projectCode { get; set; }
        /// <summary>
        /// 出库物料类型
        /// </summary>
        public string itemState { get; set; }
        /// <summary>
        /// 出库物料数量
        /// </summary>
        public decimal itemQty { get; set; }
        /// <summary>
        /// 出库物料批次号
        /// </summary>
        public string lotNo { get; set; }
        /// <summary>
        /// 出库终点
        /// </summary>
        public string endBit { get; set; }
        public string S_Roadway { get; set; }
        public string S_TASK_NO { get; set; }
    }
 
}