BaoKai_202508_WebApi_Jingwa.../API/Model/AGVTaskReport.cs

33 lines
952 B
C#
Raw Normal View History

2025-08-24 22:23:34 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace webapi.Model
{
public class AGVTaskReport
{
public EventData @event { get; set; } // 使用 @ 避免与 C# 关键字冲突
public string id { get; set; }
public long ts { get; set; }
public string type { get; set; }
public int warehouseId { get; set; }
public class EventData
{
public JobData jobData { get; set; }
public string jobId { get; set; }
public string jobType { get; set; }
public string robotJobId { get; set; }
public string state { get; set; }
public int warehouseId { get; set; }
}
public class JobData
{
public string agvCode { get; set; }
public string endSlotCode { get; set; }
public string startSlotCode { get; set; }
}
}
}