You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
393 B
15 lines
393 B
using System.Collections.Generic;
|
|
using Win_in.Sfs.Wms.Store.Application.Contracts;
|
|
|
|
namespace Win_in.Sfs.Wms.Pda.Controllers.Jobs;
|
|
|
|
/// <summary>
|
|
/// 按箱上架Input
|
|
/// </summary>
|
|
public class PutawayByPackingCodeInput
|
|
{
|
|
/// <summary>
|
|
/// 上架库存列表
|
|
/// </summary>
|
|
public List<PutawayInventoryInput> Inventories { get; set; } = new List<PutawayInventoryInput>();
|
|
}
|
|
|