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.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.AGV
- {
- /// <summary>
- /// AGV任务取消
- /// </summary>
- internal class AGVTaskCancelModel
- {
- //private static AGVTaskCancelModel _instance;
- //public static AGVTaskCancelModel GetInstance => _instance ??= new AGVTaskCancelModel();
- public string robotJobId { get; set; }
- public long warehouseId { get; set; }
- public string? executeMode { get; set; }
- public string? reason { get; set; }
- }
- }
|