using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_DTO.WMSInfo { public class ProductionLineDTO { /// /// 托盘号 /// public string Barcode { get; set; } /// /// 站台编号 /// public string stationCode { get; set; } /// /// 数量 /// public string productQty { get; set; } /// /// 批号 /// public string batchNo { get; set; } /// /// 类型 /// public short traytype { get; set; } } }