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 StationCode { get; set; }
///
/// 货位
///
public string LocationCode { get; set; }
///
/// 1出库完成,2入库完成
///
public int CompleteType { get; set; }
}
}