using System;
using System.Collections.Generic;
using System.Text;
namespace Model.ModelVm.BllTaskVm
{
public class TaskSyncInfoVm
{
///
/// Desc:任务号
/// Default:
/// Nullable:False
///
public string TaskNo { get; set; }
///
/// Desc:任务类型
/// Default:
/// Nullable:False
///
public string Type { get; set; }
///
/// Desc:起始位置
/// Default:
/// Nullable:True
///
public string StartLocat { get; set; }
///
/// Desc:目标位置
/// Default:
/// Nullable:True
///
public string EndLocat { get; set; }
///
/// Desc:托盘号
/// Default:
/// Nullable:True
///
public string PalletNo { get; set; }
///
/// Desc:托盘类型
/// Default:
/// Nullable:True
///
public string PalletType { get; set; }
///
/// 完成时间
/// Default:
/// Nullable:True
///
public DateTime? FinishDate { get; set; }
///
/// Desc:WCS操作人
/// Default:
/// Nullable:True
///
public string WCSName { get; set; }
///
/// 单据号
///
public string OrderNo { get; set; }
///
/// 物料编码
///
public string SkuNo { get; set; }
///
/// 物料名称
///
public string SkuName { get; set; }
///
/// 批次
///
public string LotNo { get; set; }
///
/// 批次描述
///
public string LotText { get; set; }
///
/// 供货批次
///
public string SupplierLot { get; set; }
///
/// 物料规格
///
public string Standard { get; set; }
///
/// 包装规格
///
public string PackageStandard { get; set; }
///
/// 数量
///
public decimal Qty { get; set; }
///
/// 箱支信息
///
public List BoxInfoList { get; set; }
}
public class BoxInfosVm
{
public string OrderCode { get; set; }
public string BoxNo { get; set; }
public string BoxNo2 { get; set; }
public string BoxNo3 { get; set; }
public decimal Qty { get; set; }
public decimal FullQty { get; set; }
public DateTime ProductionTime { get; set; }
public DateTime ExpirationTime { get; set; }
public DateTime CompleteTime { get; set; }
public string InspectMark { get; set; }
public string BitBoxMark { get; set; }
public string InspectStatus { get; set; }
public DateTime StoreTime { get; set; }
public int QtyCount { get; set; }
public int QtyOrd { get; set; }
}
}