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 Barcode { get; set; } /// /// 站台编号 /// public string stationCode { get; set; } /// /// 数量 /// public string productQty { get; set; } /// /// 总数量 /// public decimal QtySum { get; set; } /// /// 批号 /// public string batchNo { get; set; } /// /// 类型 /// public short traytype { get; set; } } }