using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.InStockTask
{
///
/// 任务箱信息
///
public class InStockTaskBoxInfoDto
{
///
/// 箱ID
///
public int BoxId { get; set; }
///
/// 箱编码
///
public string BoxBillNo { get; set; }
///
/// 物料编码
///
public string MaterialNumber { get; set; }
///
/// 物料规格型号
///
public string Specifications { get; set; }
///
/// 收货时间
///
public string ReceiveTime { get; set; }
///
/// 收货人
///
public string Receiver { get; set; }
///
/// 上架人
///
public string Shelfer { get; set; }
///
/// 入库方式:内部用
///
public int MethodForInt { get; set; }
///
/// 入库方式:1按箱,2按产品
///
public string Method { get; set; }
///
/// 入库时间(上架时间)
///
public string ShelfTime { get; set; }
///
/// 箱数量
///
public decimal Qty { get; set; }
///
/// 收货数量
///
public decimal ReceiveQty { get; set; }
/// 入库数量
///
public decimal RealityQty { get; set; }
///
/// 序列号
///
public string SerialNumbers { get; set; }
}
}