shgx_tz_mom/ZR.Service/mes/mm/IService/IMaterialInputService.cs

19 lines
394 B
C#
Raw Normal View History

2024-04-25 08:47:25 +08:00
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);
}
}