zhuangpei-mesbackend/DOAN.Service/JobKanban/IService/IWorkorderProgressService.cs

20 lines
466 B
C#
Raw Normal View History

2024-09-19 09:34:54 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using DOAN.Model.MES.base_;
using DOAN.Model.MES.product;
2024-09-19 09:34:54 +08:00
namespace DOAN.Service.JobKanban.IService
{
public interface IWorkorderProgressService
{
List<BaseWorkRoute> GetRoutes();
List<BaseGroup> GetGroups();
List<ProWorkorder> GetWorkOrderList(string group_code, string line_code, DateTime handleDate);
2024-09-19 09:34:54 +08:00
}
}