using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Comm;
using WIDESEA_Comm.AGVTask;
using WIDESEA_Common;
using WIDESEA_Core;
using WIDESEA_DTO;
namespace WIDESEA_IStoragIntegrationServices
{
public interface IToAGVService : IDependency
{
///
/// wcs请求下发agv任务
///
///
///
WebResponseContent genAgvSchedulingTask(RequestTaskDto input);
///
/// agv直走任务生成
///
///
///
WebResponseContent UntieStation(SaveModel saveModel);
///
/// ag回调接口
///
///
///
AGVResponBase agvCallback(object taskRespon);
}
}