You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
using System ;
using System.Collections.Generic ;
using System.Text ;
namespace SlnMesnac.Model.AirportApiEntity
{
/// <summary>
/// 查询任务状态请求实体类
/// </summary>
public class AGVRequestTaskStateDetailEntity
{
/// <summary>
/// 任务ID
/// </summary>
public string taskId { get ; set ; }
}
/// <summary>
/// 任务状态响应数据
/// </summary>
public class ResponseTaskStateDetailDataEntity
{
/// <summary>
/// 任务ID
/// </summary>
public string taskId { get ; set ; }
/// <summary>
/// 状态 0: 已终⽌ 1: 待执⾏ 2: 正在执⾏ 3: 已完成 4: 已取消 5: 已暂停 6: 匹配中 7: 核验中
/// </summary>
public int state { get ; set ; }
/// <summary>
/// 车辆ID
/// </summary>
public string robotId { get ; set ; }
/// <summary>
/// 车辆名称
/// </summary>
public string robotName { get ; set ; }
}
}