namespace ZR.Model.MES.wms.Dto { /// /// 待入库货物 /// public class WmgoodsDto { /// /// 货架 /// public string location { set; get; } /// /// 箱子列表(原始外箱标签码) /// public string[] packagelist { set; get; } public string CreatedBy { get; set; } public DateTime? CreatedTime { get; set; } public string UpdatedBy { get; set; } public DateTime? UpdatedTime { get; set; } } }