Files
shgx_tz_mes_backend_sync/ZR.Service/mes/mm/IService/IMaterialInputService.cs
2024-05-07 16:47:58 +08:00

40 lines
1.0 KiB
C#

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<ProWorkorder_v2>, int) Getworkorderlist(WorkorderqueryDto query);
int Generatetask(IngredientTaskDto task, string name);
List<MmIngredientTask> GetIngredientTask(IngredientTaskQueryDto queryParams);
List<MmIngredientTask> 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);
string[] Emptycarreturn_start();
string[] Emptycarreturn_end();
}
}