25 lines
588 B
C#
25 lines
588 B
C#
namespace ZR.Model.MES.wms.Dto
|
|
{
|
|
/// <summary>
|
|
/// 待入库货物
|
|
/// </summary>
|
|
public class WmgoodsDto
|
|
{
|
|
/// <summary>
|
|
/// 货架
|
|
/// </summary>
|
|
public string location { set; get; }
|
|
/// <summary>
|
|
/// 箱子列表(原始外箱标签码)
|
|
/// </summary>
|
|
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; }
|
|
}
|
|
}
|