using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.AGV.Feedback { public class JobData { /// /// AGV编号 /// public string agvCode { get; set; } /// /// 容器编号 /// public string containerCode { get; set; } /// /// 上料点位 /// public string startPointCode { get; set; } /// /// 上料货位编号 /// public string startSlotCode { get; set; } /// /// 下料点位 /// public string targetPointCode { get; set; } /// /// 下料货位编号 /// public string targetSlotCode { get; set; } /// /// 是否需要上料交互 /// public bool loadInteractive { get; set; } } }