wangxinhui
9 天以前 84ebbaf5bcb24a7b283c7aee38879b16f262b7c6
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_DTO
{
    public class EPLightBackDTO
    {
        /// <summary>
        /// 订单号
        /// </summary>
        public string DOCNO { get; set; }
        /// <summary>
        /// 任务号
        /// </summary>
        public string TASKNO { get; set; }
        /// <summary>
        /// 货位号
        /// </summary>
        public string LOCATION { get; set; }
        /// <summary>
        /// 实际拍灯数量
        /// </summary>
        public int QUANTITY { get; set; }
        /// <summary>
        /// 拍灯时间
        /// </summary>
        public string RETURNTIME { get; set; }
    }
}