仓库-拼箱功能实现

This commit is contained in:
赵正易
2024-04-18 17:02:17 +08:00
parent d83d634fc4
commit 59dd7307d8
3 changed files with 105 additions and 5 deletions

View File

@@ -7,7 +7,9 @@ namespace ZR.Model.MES.wms.Dto
/// </summary>
public class WmGoodsConsolidationDto
{
public List<ResultionPackageCodeDto> List { get; set; }
public List<ResultionPackageCodeDto> PackageList { get; set; }
public string CreateBy { get; set; }
}
@@ -16,7 +18,8 @@ namespace ZR.Model.MES.wms.Dto
/// </summary>
public class WmGoodsUnpackingDto
{
public List<ResultionPackageCodeDto> List { get; set; }
public ResultionPackageCodeDto Package { get; set; }
public string CreateBy { get; set; }
}
}