dengjunjie
2025-05-20 be484c84a25d1f6c769e7b5e958048d745942e55
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_DTO.WCSInfo
{
    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 decimal QtySum { get; set; }
        /// <summary>
        /// 批号
        /// </summary>
        public string batchNo { get; set; }
        /// <summary>
        /// 类型
        /// </summary>
        public short traytype { get; set; }
    }
}