WcsMoveTaskResponse.cs 469 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace wms.dto.response.cp
  5. {
  6. public class WcsMoveTaskResponse
  7. {
  8. /// <summary>
  9. /// 0:失败;1:允许2升位执行;2:执行移库任务;3:一深位有出库任务
  10. /// </summary>
  11. public int ResType { get; set; } = 0;
  12. /// <summary>
  13. /// 一深位货位号
  14. /// </summary>
  15. public string CellNo { get; set; }
  16. }
  17. }