zhuangpei-mesbackend/DOAN.Service/JobKanban/IService/IWorkorderProgressService.cs
qianhao.xu ba2e2dca05 1
2024-09-19 11:15:11 +08:00

34 lines
989 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using DOAN.Model.JobKanban;
using DOAN.Model.MES.base_;
using DOAN.Model.MES.product;
using DOAN.Model.MES.product.Dto;
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);
List<ProWorkorderDto4> GetWorkOrderListNoFinish(DateTime today, string line_code, string group_code);
ProWorkorderDto4 GetWorkOrderDetail(string workorder);
KanbanInfo GetKanbanNum(DateTime today, string line_code, string group_code);
int StartWorkOrder(string workorder);
int FinishWorkOrder(string workorder);
ProWorkorder GetProductingWorkorder(string group_code, string line_code, DateTime handleDate);
}
}