CompletionRobotTaskCommand.cs 712 Bytes
using System;

namespace Rcs.Application.MessageBus.Commands;

/// <summary>
/// 删除任务命令
/// @author zzy
/// </summary>
public class CompletionRobotTaskCommand : MessageBase
{
    /// <summary>
    /// 任务ID
    /// </summary>
    public string task_id { get; set; }

    /// <summary>
    /// 实际放货区域
    /// </summary>
    public string? area { get; set; }

    /// <summary>
    /// 实际放货位置
    /// </summary>
    public string location_id { get; set; }

    /// <summary>
    /// 完成时间
    /// </summary>
    public string com_time { get; set; }

    /// <summary>
    /// 执行任务机器人编号
    /// </summary>
    public string robot_code { get; set; }
}