NodeJobState.cs 495 字节
using System;
using System.Collections.Generic;
using System.Text;

namespace DeviceLib.Model.AGV
{
    /// <summary>
    /// 节点类的执行情况
    /// </summary>
    public class NodeJobState
    {
        public int Id { get; set; }
        public string Name { get; set; }
        public int RobotId { get; set; }
        /// <summary>
        /// 是否已确认
        /// </summary>
        public bool Confirmed { get; set; }
        public bool Finished { get; set; }
    }
}