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.

44 lines
1.0 KiB
C#

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; }
}
}