19 lines
394 B
C#
19 lines
394 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
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);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|