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.
|
- 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; }
- }
- }
|