SendShelfToLiftJob.cs 584 字节
using DeviceLib.Model.AGV;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace DeviceLib.BLL
{
    internal class SendShelfToLiftJob:ImpJob
    {
        public SendShelfToLiftJob(JobParam jobParam) : base(jobParam)
        {
        }
        public override Job Run(Robot robot)
        {
            Job job = this;
            job = new DeliverShelfJob(JobParam);
            job.ToNextStep(RunStep.DeliveryShelf_15_ActionSuccess, "料架送入电梯完成");
            return job;
        }
    }
}