using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WCS.Service.Entity { public class GetProductInfoResponse : WcsContractApiResponse { public string BarCode { get; set; } /// /// 直径 /// public decimal Diameter { get; set; } /// /// 重量 /// public decimal Weight { get; set; } /// /// 高度 /// public decimal Height { get; set; } /// /// 子托盘类型(0无需自托盘 1 子托盘1 2子托盘2 3子托盘3) /// public short ChildContainerType { get; set; } /// /// 载重卷数 /// public short LoadCount { get; set; } public int DocId { get; set; } public short ProLine { get; set; } /// /// 是否尾盘(0否,1是) /// public int IsLeft { get; set; } } }