Files
kunshan-bzfm-mes-backend/DOAN.Service/Mobile/IService/IReportFlowService.cs

14 lines
392 B
C#
Raw Normal View History

2024-12-03 19:21:32 +08:00
using DOAN.Model.MES.product;
namespace DOAN.Service.Mobile.IService;
public interface IReportFlowService: IBaseService<ProReportwork01>
{
2024-12-03 19:39:52 +08:00
ProWorkorder GetWorkOrderDetail(string workorder);
ProReportwork01 GetProcessReportWorkDetail(string workorder, string process);
bool ProcessReportWork(string workorder, string process, int finish_num,int bad_num,string Worker);
2024-12-03 19:21:32 +08:00
}