using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_DTO.TaskInfo { /// /// 料箱到达 /// public class ContainerArriveDTO { /// /// 拣选工位编号 /// public string SlotCode { get; set; } /// /// 料箱号 /// public string ContainerCode { get; set; } } /// /// 料箱流动 /// public class ContainerFlowDTO { /// /// 拣选工位编号 /// public string SlotCode { get; set; } /// /// 料箱号 /// public string ContainerCode { get; set; } /// /// 流动去向
/// 100库内
/// 200取出
///
public string Direction { get; set; } } /// /// 料箱入库完成上报 /// public class ContainerInFinishDTO { /// /// 任务号 /// public string TaskCode { get; set; } /// /// 料箱号 /// public string ContainerCode { get; set; } /// /// 起始站台 /// public string FromStationCode { get; set; } /// /// 目标货位 /// public string ToLocationCode { get; set; } } }