dengjunjie
2024-11-27 5be0f5bc3b9a83a3b30c9915bd5309279d140244
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
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 TrayBarcode { get; set; }
        /// <summary>
        /// 托盘类型
        /// </summary>
        public int TrayType { get; set; }
        /// <summary>
        /// 数量
        /// </summary>
        public int InProductQty { get; set; }
        //public int ProductQty { get; set; } = 0;
        /// <summary>
        /// 批号
        /// </summary>
        public string BatchNo { get; set; }
        /// <summary>
        /// 站点编号
        /// </summary>
        public string Station {  get; set; }
    }
}