using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Service.Entity
{
public class I_WCS_GetOutTaskResponse : WcsContractApiResponse
{
///
/// 结果
///
public bool ResType { get; set; }
///
/// 消息
///
public string ResMessage { get; set; }
public List WMSTasks { get; set; }
}
public class I_WCS_GetOutTaskResponseTemp
{
///
/// WMS任务号
///
public string WMSTaskNum { get; set; }
///
/// 任务类型(1:入库2:出库3:移库4:移动(搬运) 5:异常)
///
public int TaskType { get; set; }
///
/// 出库货位
///
public string OutWareCellNo { get; set; }
///
/// 仓库名称
///
public string WareHouseName { get; set; }
///
/// 容器条码
///
public string ContainerBarCode { get; set; }
///
/// 行
///
public int Row { get; set; }
///
/// 列
///
public int Colomn { get; set; }
///
/// 层
///
public int Layer { get; set; }
///
/// 巷道号
///
public string TunnelNum { get; set; }
///
/// 备用
///
public string Memo1 { get; set; } = "";
///
/// 备用
///
public string Memo2 { get; set; } = "";
///
/// 备用
///
public string Memo3 { get; set; } = "";
///
/// 备用
///
public string Memo4 { get; set; } = "";
///
/// 备用
///
public string Memo5 { get; set; } = "";
}
public class I_WCS_GetOutTaskResponseSingle : WcsContractApiResponse
{
///
/// WMS任务号
///
public string WMSTaskNum { get; set; }
///
/// 任务类型(1:入库2:出库3:移库4:移动(搬运) 5:异常)
///
public int TaskType { get; set; }
///
/// 出库货位
///
public string OutWareCellNo { get; set; }
///
/// 仓库名称
///
public string WareHouseName { get; set; }
///
/// 容器条码
///
public string ContainerBarCode { get; set; }
///
/// 行
///
public int Row { get; set; }
///
/// 列
///
public int Colomn { get; set; }
///
/// 层
///
public int Layer { get; set; }
///
/// 巷道号
///
public string TunnelNum { get; set; }
///
/// 备用
///
public string Memo1 { get; set; } = "";
///
/// 备用
///
public string Memo2 { get; set; } = "";
///
/// 备用
///
public string Memo3 { get; set; } = "";
///
/// 备用
///
public string Memo4 { get; set; } = "";
///
/// 备用
///
public string Memo5 { get; set; } = "";
}
}