纽威
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
783 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace ICSSoft.Entity
  6. {
  7. public class AGVCallBackModel
  8. {
  9. /// <summary>
  10. ///请求编号
  11. /// </summary>
  12. public string reqCode { get; set; }
  13. /// <summary>
  14. /// 目标点位编码
  15. /// </summary>
  16. public string currentPositionCode { get; set; }
  17. /// <summary>
  18. /// 任务ID
  19. /// </summary>
  20. public string taskCode { get; set; }
  21. /// <summary>
  22. /// 取放料箱类型:1.取料箱;2.放料箱
  23. /// </summary>
  24. public string action { get; set; }
  25. /// <summary>
  26. /// 货架编号
  27. /// </summary>
  28. public string podCode { get; set; }
  29. }
  30. }