Files
shgx_tz_mes_backend_sync/ZR.Model/MES/wms/AGVtask_third.cs

53 lines
1.1 KiB
C#
Raw Normal View History

2024-06-07 11:04:26 +08:00
namespace ZR.Model.MES.wms
2024-04-01 17:20:23 +08:00
{
/// <summary>
/// 对接agv 第三方
/// </summary>
public class AGVtask_third
{
2024-06-07 11:04:26 +08:00
public string reqCode { get; set; }
public string msg { get; set; }
public string taskTyp { get; set; }
2024-04-01 17:20:23 +08:00
public List<AGV_location_third> positionCodePath { get; set; }
2024-06-07 11:04:26 +08:00
public string podDir { get; set; }
public string priority { get; set; }
2024-05-14 15:41:42 +08:00
public string agvCode { get; set; }
2024-04-01 17:20:23 +08:00
}
2024-06-07 11:04:26 +08:00
public class AGV_location_third
2024-04-01 17:20:23 +08:00
{
public string positionCode { get; set; }
public string type { get; set; }
}
/// <summary>
/// 生成任务单 第三方 返回值
/// </summary>
public class AGV_task_third
2024-06-07 11:04:26 +08:00
{
2024-04-01 17:20:23 +08:00
2024-06-07 11:04:26 +08:00
public string code { get; set; }
2024-04-01 17:20:23 +08:00
2024-06-07 11:04:26 +08:00
public string message { get; set; }
2024-04-01 17:20:23 +08:00
2024-06-07 11:04:26 +08:00
public string reqCode { get; set; }
2024-04-01 17:20:23 +08:00
public string data { get; set; }
}
/// <summary>
/// agv 取消任务
/// </summary>
public class AGVtask_cancel_third
2024-06-07 11:04:26 +08:00
{
public string reqCode { get; set; }
public string forceCancel { get; set; }
2024-04-01 17:20:23 +08:00
public string taskCode { get; set; }
}
}