zhuangpei-mesbackend/DOAN.Service/Mobile/IService/IPreparationTaskService.cs
qianhao.xu 28080909eb 12
2024-09-18 09:54:14 +08:00

20 lines
407 B
C#

using DOAN.Model.MES.base_;
using DOAN.Model.MES.product;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DOAN.Service.Mobile.IService
{
public interface IPreparationTaskService
{
List<BaseWorkRoute> GetLines();
List<ProWorkorder> GetWorkOrderList(DateTime HandleDate, string route_code);
}
}