GetShelfFromLiftJob.cs
589 字节
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 GetShelfFromLiftJob:ImpJob
{
public GetShelfFromLiftJob(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;
}
}
}