Files
kunshan-bzfm-mes-backend/DOAN.Service/Mobile/IService/IReportFlowService.cs
2024-12-03 19:39:52 +08:00

14 lines
392 B
C#

using DOAN.Model.MES.product;
namespace DOAN.Service.Mobile.IService;
public interface IReportFlowService: IBaseService<ProReportwork01>
{
ProWorkorder GetWorkOrderDetail(string workorder);
ProReportwork01 GetProcessReportWorkDetail(string workorder, string process);
bool ProcessReportWork(string workorder, string process, int finish_num,int bad_num,string Worker);
}