wanshenmean
3 天以前 7278264f027d62664a0209699d0f66a22fd06a8e
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_DTO
{
    /// <summary>
    /// 分容柜输入Dto
    /// </summary>
    public class InputDto
    {
        /// <summary>
        /// 托盘号
        /// </summary>
        public string PalletCode { get; set; }
 
        /// <summary>
        /// 货位号
        /// </summary>
        public string LocationCode { get; set; }
 
        /// <summary>
        /// 货位状态
        /// </summary>
        public int LocationStatus { get; set; }
 
        /// <summary>
        /// 是否正常NG流程
        /// </summary>
        public int IsNG { get; set; }
    }
}