获取工单下的报工列表

This commit is contained in:
qianhao.xu
2024-12-03 20:10:18 +08:00
parent 37a6f76d0c
commit 34ffda9557
5 changed files with 123 additions and 20 deletions

View File

@@ -1,4 +1,5 @@
using DOAN.Model.MES.product;
using DOAN.Model.Mobile.ReportFlow.Dto;
namespace DOAN.Service.Mobile.IService;
@@ -7,10 +8,10 @@ public interface IReportFlowService: IBaseService<ProReportwork01>
ProWorkorder GetWorkOrderDetail(string workorder);
ProReportwork01 GetProcessReportWorkDetail(string workorder, string process);
ProReportwork01 GetProcessReportWorkDetail(string workorder, int process);
bool ProcessReportWork(string workorder, string process, int finish_num,int bad_num,string Worker);
bool ProcessReportWork(string workorder, int process, int finish_num,int bad_num,string Worker);
List<ProReportwork01> GetWorkOrderReportWorkList(string workorder);
List<ProReportWorkDetialDto> GetWorkOrderReportWorkList(string workorder);
}