查询工序报工详情

This commit is contained in:
qianhao.xu
2024-12-03 19:39:52 +08:00
parent fef6863e8d
commit 12e17bd651
4 changed files with 75 additions and 2 deletions

View File

@@ -5,6 +5,10 @@ namespace DOAN.Service.Mobile.IService;
public interface IReportFlowService: IBaseService<ProReportwork01>
{
ProWorkorder GetWorkOrderDetail(string workorder);
ProWorkorder GetWorkOrderDetail(string workorder);
ProReportwork01 GetProcessReportWorkDetail(string workorder, string process);
bool ProcessReportWork(string workorder, string process, int finish_num,int bad_num,string Worker);
}