using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEAWCS_DTO.TaskInfo
{
public class WMSTasksDTO
{
///
/// 任务类型
/// 1成品入库
///2成品出库
///3 面料入库
///4 面料出库
///5跨楼层运输
///6 裁剪送货
///7裁剪入库
///8 裁剪出库
///
public int taskType { get; set; }
///
/// 任务组号
///
public string taskGroupCode { get; set; }
public string groupPriority { get; set; }
public List tasks { get; set; }
}
public class TaskDTO
{
///
/// 任务号
///
public string taskCode { get; set; }
///
/// 任务等级
///
public int taskPriority { get; set; }
///
/// 料箱号
///
public string containerCode { get; set;}
///
/// 料箱类型
///
public string containerType { get; set;}
public string storageTag { get; set;}
///
/// 起点位置
///
public string fromLocationCode { get; set;}
///
/// 终点区域
///
public string toAreaCode { get; set;}
///
/// 终点位置
///
public string toLocationCode { get; set;}
}
}