wanshenmean
3 天以前 ce1292c9cf37195b6abd2699dfc5d6cb3e143c9b
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
using System.Collections.Generic;
 
namespace WIDESEA_DTO.MES
{
    /// <summary>
    /// 托盘出站请求DTO
    /// </summary>
    public class OutboundInContainerRequestDto
    {
        /// <summary>
        /// 托盘编号
        /// </summary>
        public string PalletCode { get; set; }
 
        /// <summary>
        /// 库存ID
        /// </summary>
        public long StockId { get; set; }
 
        /// <summary>
        /// 产品参数列表(可选)
        /// </summary>
        public List<ParamItemDto> ParamList { get; set; }
 
        /// <summary>
        /// 参数项DTO
        /// </summary>
        public class ParamItemDto
        {
            /// <summary>
            /// 参数编码
            /// </summary>
            public string ParamCode { get; set; }
 
            /// <summary>
            /// 参数值
            /// </summary>
            public string ParamValue { get; set; }
 
            /// <summary>
            /// 采集时间
            /// </summary>
            public string CollectionTime { get; set; }
        }
    }
}