33 lines
952 B
C#
33 lines
952 B
C#
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; }
|
|
}
|
|
}
|
|
} |