33 lines
891 B
C#
33 lines
891 B
C#
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 agvCode);
|
|
string EmergencyStopAgv(string reqCode);
|
|
|
|
int FinishBatchingTask(string start_point, string end_point, string taskId);
|
|
|
|
string[] Emptycarreturn_start();
|
|
|
|
string[] Emptycarreturn_end();
|
|
|
|
}
|
|
}
|