dengjunjie
4 天以前 441b6f8d257a01b2998253ef0515a201777d7e68
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.WMSInfo
{
    public class ProductionLineDTO
    {
        /// <summary>
        /// 托盘号
        /// </summary>
        public string Barcode { get; set; }
        /// <summary>
        /// 站台编号
        /// </summary>
        public string stationCode { get; set; }
        /// <summary>
        /// 数量
        /// </summary>
        public string productQty { get; set; }
        /// <summary>
        /// 批号
        /// </summary>
        public string batchNo { get; set; }
        /// <summary>
        /// 类型
        /// </summary>
        public short traytype { get; set; }
    }
}