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

34 lines
771 B
C#
Raw Normal View History

using System.ComponentModel.DataAnnotations;
namespace ZR.Model.MES.wms.Dto
{
2024-04-25 12:49:18 +08:00
/// <summary>
/// 通用查询条件
/// </summary>
public class CommonQueryDto : PagerInfo
{
public string Query { get; set; }
}
/// <summary>
/// 拼箱操作
/// </summary>
public class WmGoodsConsolidationDto
{
2024-04-18 17:02:17 +08:00
public List<ResultionPackageCodeDto> PackageList { get; set; }
public int secondNum { get; set; }
2024-04-18 17:02:17 +08:00
public string CreateBy { get; set; }
}
/// <summary>
/// 拆箱操作
/// </summary>
public class WmGoodsUnpackingDto
{
2024-04-18 17:02:17 +08:00
public ResultionPackageCodeDto Package { get; set; }
2024-04-19 14:00:33 +08:00
public int firstNum { get; set; }
2024-04-18 17:02:17 +08:00
public string CreateBy { get; set; }
}
}