using System;
using System.Collections.Generic;
using System.Text;
namespace Model.ModelDto.DataDto
{
public class TotalRecordDto
{
///
/// 批次
///
public string LotNo { get; set; }
///
/// 供货批次
///
public string SupplierLot { get; set; }
///
/// 批次描述
///
public string LotText { get; set; }
///
/// 物料号
///
public string SkuNo { get; set; }
///
/// 物料名称
///
public string SkuName { get; set; }
///
/// 规格
///
public string Standard { get; set; }
///
/// 入库数量
///
public int RQty { get; set; }
///
/// 已组数量
///
public int RFactQty { get; set; }
///
/// 完成数量
///
public int RCompleteQty { get; set; }
///
/// 出库数量
///
public int CQty { get; set; }
///
/// 分配数量
///
public int CAllotQty { get; set; }
///
/// 下架数量
///
public int CFactQty { get; set; }
///
/// 拣货数量
///
public int CompleteQty { get; set; }
///
/// 入库时间
///
public DateTime? CompleteTime { get; set; }
///
/// 托盘号
///
public string PalletNo { get; set; }
///
/// 拣货时间
///
public DateTime? CCreateTime { get; set; }
///
/// 入库单号
///
public string ASNNo { get; set; }
///
/// 出库单号
///
public string SONo { get; set; }
///
/// 出库任务号
///
public string CTaskNo { get; set; }
}
}