OutDoubleLineNode.cs 682 字节
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace AGVControl
{
    /// <summary>
    /// 双层线有料料架出口
    /// </summary>
    public class OutDoubleLineNode : ClientNode
    {
        public OutDoubleLineNode(string name, string ip, string aliceName, string pos_name, string pos_guid, bool isUse): base(name,ip, aliceName,pos_name,pos_guid, isUse)
        {
        }

        public override Job GetNewJob(Agv_Info agv)
        {
            //如果有要出的料架,判断目的地线体是否空料架,如果有,暂时不出,返回
            return null;
        }
    }
}