仓库-批量出库功能实现

This commit is contained in:
2024-04-23 18:42:44 +08:00
parent 50226106f5
commit b3fc2394e7
4 changed files with 114 additions and 1 deletions

View File

@@ -93,5 +93,19 @@ namespace ZR.Model.MES.wms.Dto
}
/// <summary>
/// 批次出库
/// </summary>
public class WmBatchGoodsOutProductionDto
{
public List<string> Ids { get; set; }
public string FkOutOrderId { get; set; } = "无出库单";
public string PackageCodeClient { get; set; } = string.Empty;
public string Partnumber { get; set; }
/// <summary>
/// 1-传ids全部出库 2-按批次号全部出库
/// </summary>
public int Type { get; set; }
}
}