using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_DTO.WMS { /// /// WMS容器流动请求 /// public class WMSContainerFlow { /// /// 拣选位编码 /// 一号工作站 1-5 拣选位,2 号工作站 2-5 拣选位(双方约定) /// public string slotCode { get; set; } /// /// 料箱条码 /// public string containerCode { get; set; } /// /// 流向 /// 100-流向库内;200-料箱取出 /// public string direction { get; set; } } }