终端一体化运控平台
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

22 satır
603 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPASmartClient.AGV
  7. {
  8. /// <summary>
  9. /// AGV任务取消
  10. /// </summary>
  11. internal class AGVTaskCancelModel
  12. {
  13. //private static AGVTaskCancelModel _instance;
  14. //public static AGVTaskCancelModel GetInstance => _instance ??= new AGVTaskCancelModel();
  15. public string robotJobId { get; set; }
  16. public long warehouseId { get; set; }
  17. public string? executeMode { get; set; }
  18. public string? reason { get; set; }
  19. }
  20. }