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_;
|
2024-09-19 09:42:54 +08:00
|
|
|
|
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();
|
2024-09-19 09:42:54 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<ProWorkorder> GetWorkOrderList(string group_code, string line_code, DateTime handleDate);
|
2024-09-19 09:34:54 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|