zhao
2021-06-04 c7ec496f9e41c2227103b3ef776e4a3f91bce6b2
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WMS.Entitys.External
{
    [Name("货位的绑定与解绑")]
    public class LocationTrayItmRelEntity
    {
        public string stockCode { get; set; }
        public string location { get; set; }
        public string trayCode { get; set; }
        /// <summary>
        /// 传入绑定或解绑的系统名称
        /// </summary>
        public string sysName { get; set; }
        /// <summary>
        /// 1:绑定托盘  2:解绑托盘
        /// </summary>
        public int type { get; set; }
        /// <summary>
        /// 1:删除物料  2:不删除物料
        /// </summary>
        public int unBindDelItem { get; set; }
        /// <summary>
        /// 1:满 2:不满  3:空
        /// </summary>
        public int isFull { get; set; }
        public List<ChaoYangItemDataEntity> itemData { get; set; }
    }
}