using ZR.Model.MES.wms; using ZR.Model.MES.wms.Dto; namespace ZR.Service.mes.wms.IService { public interface IWmAGVService { List GetList(QueryAGVparam param); List QueryAGVTask(string workorder_id); int AddAGVTask(AgvTask task); int DeleteTask(string taskId); List GetAGV_position_list(AgvLocation location); string GenerateAgvTask(string taskid, int flag); string CancelAGVTask(string taskId, int flag); } }