using WcsMain.Tcp.Entity.Message; namespace WcsMain.Tcp.Entity.Convey; /// /// PLC 向WCS请求分拣口时的请求数据 /// public class GetRouterData : MsgHeader { /// /// 请求位置 /// public string? Area { get; set; } /// /// 分拣口庄涛 /// public string? SortStatus { get; set; } /// /// 条码 /// public string? Code { get; set; } /// /// 尺寸 /// public string? Size { get; set; } /// /// 重量 /// public decimal? Weight { get; set; } /// /// 长 /// public decimal? Length { get; set; } /// /// 宽 /// public decimal? Width { get; set; } /// /// 高 /// public decimal? Hight { get; set; } /// /// 备用1 /// public string? Spare1 { get; set; } /// /// 备用2 /// public string? Spare2 { get; set; } }