using Microsoft.AspNetCore.Mvc; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ZR.Model; using ZR.Model.MES.mm; using ZR.Model.MES.mm.Dto; using ZR.Model.MES.pro; namespace ZR.Service.mes.mm.IService { public interface IMaterialInputService { string[] Getstart_AGV_points(); string[] Getend_AGV_points(); List Getworkorderlist(DateTime datetimespan); int Generatetask(IngredientTaskDto task,string name); List GetIngredientTask(IngredientTaskQueryDto queryParams); List GetIngredientTaskSon(string taskId); string[] Getfabgopoints(); string AGV_schedule(string start_point, string end_point); string EmergencyStopAgv(string reqCode); int FinishBatchingTask(string start_point, string end_point, string taskId); } }