using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.WCS.Mobox3.DSZSH.Dtos.Request { public class AgvRequest { /// /// HostToAGV 上报任务状态 /// public class AgvTaskState { public int State { get; set; } public string TaskNo { get; set; } public string ForkliftNo { get; set; } /// /// 安全门编号 /// public string lock_no { get; set; } public string ext_data { get; set; } } public class SafetyInteractionInfo { public int station_id { get; set; } /// /// 请求上线/下线的的站台库位名称,例如work6、work8 /// public string station_name { get; set; } /// /// 请求码 /// public string apply_code { get; set; } public string TaskNo { set; get; } } } }