2024-04-28 08:36:00 +08:00
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
|
using System;
|
2024-04-25 08:47:25 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
2024-04-28 08:36:00 +08:00
|
|
|
|
using ZR.Model.MES.mm.Dto;
|
2024-04-25 08:47:25 +08:00
|
|
|
|
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> Getworkorderlist(DateTime datetimespan);
|
2024-04-28 08:36:00 +08:00
|
|
|
|
int Generatetask(IngredientTaskDto task,string name);
|
2024-04-25 08:47:25 +08:00
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|