仓库-拼箱,拆箱基础代码上传

This commit is contained in:
赵正易
2024-04-18 11:34:49 +08:00
parent 15f6103c0a
commit c1375ad7af
6 changed files with 132 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
using System.ComponentModel.DataAnnotations;
namespace ZR.Model.MES.wms.Dto
{
/// <summary>
/// 拼箱操作
/// </summary>
public class WmGoodsConsolidationDto
{
public List<ResultionPackageCodeDto> List { get; set; }
}
/// <summary>
/// 拆箱操作
/// </summary>
public class WmGoodsUnpackingDto
{
public List<ResultionPackageCodeDto> List { get; set; }
}
}