StockAllocationResult.cs 621 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using wms.dto.response.sx;
  5. namespace wms.service.Help.LayerPacking.model
  6. {
  7. /// <summary>
  8. /// 仓库库存分配结果
  9. /// </summary>
  10. public class StockAllocationResult
  11. {
  12. /// <summary>
  13. /// 是否成功
  14. /// </summary>
  15. public bool IsSuccess { get; set; }
  16. /// <summary>
  17. /// 错误信息
  18. /// </summary>
  19. public string ErrorMessage { get; set; }
  20. /// <summary>
  21. /// 箱
  22. /// </summary>
  23. public LayerPackingBoxInfo BoxInfo { get; set; }
  24. }
  25. }