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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WMS.Entitys.Dto
{
    /// <summary>
    /// 货位绑定与解绑参数实体
    /// </summary>
    public class BindingAndUnBindingDto
    {
        public string trayCode { get; set; }
 
        public string locationCode { get; set; }
        public bool rowFlag { get; set; }
 
        /// <summary>
        /// 1:绑定托盘  2:解绑托盘
        /// </summary>
        public int type { get; set; }
 
        public List<ItemDto> itemData { get; set; }
    }
}