Files
shgx_tz_mes_backend_sync/ZR.Model/MES/wms/Dto/WmgoodsDto.cs

25 lines
588 B
C#
Raw Normal View History

2024-06-07 11:04:26 +08:00
namespace ZR.Model.MES.wms.Dto
2024-03-13 17:30:57 +08:00
{
/// <summary>
/// 待入库货物
/// </summary>
public class WmgoodsDto
{
/// <summary>
/// 货架
/// </summary>
public string location { set; get; }
/// <summary>
2024-03-15 17:55:50 +08:00
/// 箱子列表(原始外箱标签码)
2024-03-13 17:30:57 +08:00
/// </summary>
public string[] packagelist { set; get; }
2024-06-28 08:37:21 +08:00
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
2024-03-13 17:30:57 +08:00
}
}