using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ZR.Model.MES.wms.Dto
{
///
/// 待入库货物
///
public class WmgoodsDto
{
///
/// 货架
///
public string location { set; get; }
///
/// 箱子列表(原始外箱标签码)
///
public string[] packagelist { set; get; }
}
}