using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_DTO.WCSInfo { public class ProductionlineDTO { /// /// 托盘条码 /// public string TrayBarcode { get; set; } /// /// 托盘类型 /// public int TrayType { get; set; } /// /// 数量 /// public int InProductQty { get; set; } //public int ProductQty { get; set; } = 0; /// /// 批号 /// public string BatchNo { get; set; } /// /// 站点编号 /// public string Station { get; set; } } }